:root {
  --elmansi-ink: #111827;
  --elmansi-muted: #5f6b7a;
  --elmansi-navy: #123047;
  --elmansi-blue: #176b87;
  --elmansi-green: #17815f;
  --elmansi-gold: #f88c00;
  --elmansi-paper: #f8fafc;
  --elmansi-line: rgba(17, 24, 39, 0.12);
  --elmansi-shadow: 0 22px 60px -38px rgba(17, 24, 39, 0.48);
  --elmansi-page-width: 1280px;
  --elmansi-page-gutter: 32px;
  --elmansi-container-gutter: 30px;
  /* floor / site background as a reusable variable */
  --elmansi-floor-gradients:
    radial-gradient(circle at 14% 8%, rgba(248, 140, 0, 0.12), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(23, 129, 95, 0.13), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef5f4 100%);
  --elmansi-floor-pattern:
    radial-gradient(rgba(18, 48, 71, 0.1) 1px, transparent 1px),
    radial-gradient(rgba(248, 140, 0, 0.12) 1px, transparent 1px);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: color-mix(
      in srgb,
      var(--elmansi-blue) 72%,
      var(--elmansi-green)
    )
    rgba(241, 247, 255, 0.82);
}

body {
  color: var(--elmansi-muted);
  background: #fff;
  letter-spacing: 0;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.96),
    rgba(238, 245, 244, 0.96)
  );
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  min-height: 48px;
  border: 3px solid rgba(248, 250, 252, 0.96);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--elmansi-blue),
    var(--elmansi-green)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--elmansi-navy), var(--elmansi-blue));
}

::-webkit-scrollbar-corner {
  background: rgba(248, 250, 252, 0.96);
}

#main {
  overflow-x: clip;
}

@media (min-width: 992px) {
  #main {
    width: min(
      var(--elmansi-page-width),
      calc(100% - var(--elmansi-page-gutter))
    );
    margin: 24px auto 0;
    overflow: visible;
  }

  #main > section {
    overflow: hidden;
  }

  #main > section:first-child {
    border-top-right-radius: 32px;
    border-top-left-radius: 32px;
  }

  #main > section:last-child {
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
  }
}

a,
a:hover {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.elmansi-tiktok-icon {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}

.elmansi-header {
  position: sticky;
  top: 0;
  z-index: 997;
  height: auto !important;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 46px -40px rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(16px);
}

@media (min-width: 992px) {
  .elmansi-header {
    top: 16px;
    width: min(
      var(--elmansi-page-width),
      calc(100% - var(--elmansi-page-gutter))
    );
    margin: 16px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    box-shadow: 0 18px 42px -28px rgba(17, 24, 39, 0.38);
  }
}

.elmansi-topline {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(18, 48, 71, 0.96);
  color: rgba(255, 255, 255, 0.86);
}

.elmansi-topline-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.elmansi-topline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 42%;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.7;
  text-decoration: none;
}

.elmansi-topline-link:hover {
  color: #fff;
  text-decoration: none;
}

.elmansi-topline-link i {
  color: var(--elmansi-gold);
}

.elmansi-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.elmansi-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.elmansi-social a:hover {
  color: #fff;
  background: var(--elmansi-gold);
  border-color: var(--elmansi-gold);
  transform: translateY(-2px);
}

.elmansi-brandbar {
  background:
    radial-gradient(
      circle at 14% -60%,
      rgba(248, 140, 0, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% -30%,
      rgba(23, 129, 95, 0.11),
      transparent 28%
    ),
    rgba(255, 255, 255, 0.92);
}

.elmansi-brandbar-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.elmansi-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--elmansi-ink);
  text-decoration: none;
  min-width: 0;
}

.elmansi-brand:hover {
  color: var(--elmansi-ink);
  text-decoration: none;
}

.elmansi-logo-frame {
  position: relative;
  width: 150px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(248, 250, 252, 0.72)
    ),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 48px -34px rgba(17, 24, 39, 0.78);
}

.elmansi-logo-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 15px;
  border: 1px solid rgba(23, 107, 135, 0.09);
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(248, 140, 0, 0.14),
      transparent 32%
    ),
    radial-gradient(circle at 86% 75%, rgba(23, 129, 95, 0.12), transparent 36%);
}

.elmansi-logo-frame::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 150%;
  top: -25%;
  right: -55px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.62),
    transparent
  );
  transform: rotate(18deg);
  transition: right 0.55s ease;
}

.elmansi-brand:hover .elmansi-logo-frame::after {
  right: 120%;
}

.elmansi-logo-frame img {
  position: relative;
  z-index: 1;
  width: 122px;
  max-width: 84%;
  height: auto;
  transition: transform 0.35s ease;
}

.elmansi-brand:hover .elmansi-logo-frame img {
  transform: scale(1.035);
}

.elmansi-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.elmansi-brand-copy strong {
  width: fit-content;
  color: var(--elmansi-ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  position: relative;
}

.elmansi-brand-copy strong::after {
  content: "";
  display: block;
  width: 54%;
  height: 3px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--elmansi-gold), var(--elmansi-green));
}

.elmansi-brand-copy small {
  color: var(--elmansi-muted);
  max-width: 520px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.elmansi-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.elmansi-contact-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 129, 95, 0.18);
  border-radius: 999px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  box-shadow: 0 18px 42px -38px rgba(17, 24, 39, 0.65);
}

.elmansi-contact-chip:hover {
  color: var(--elmansi-ink);
  border-color: rgba(23, 129, 95, 0.34);
  background: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.elmansi-contact-chip i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--elmansi-green);
  font-size: 18px;
}

.elmansi-contact-chip.is-accent i {
  background: var(--elmansi-gold);
}

.elmansi-contact-chip span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.elmansi-contact-chip small {
  color: var(--elmansi-muted);
  font-size: 10px;
  font-weight: 800;
}

.elmansi-contact-chip strong {
  color: var(--elmansi-ink);
  font-size: 14px;
  font-weight: 900;
}

.elmansi-nav-shell {
  padding: 0 0 10px;
  position: relative;
  top: 10px;
}

.elmansi-nav-shell .container {
  position: static;
}

.elmansi-nav {
  width: 100%;
  min-height: 54px;
  margin: 0 auto;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.88);
  box-shadow: 0 18px 44px -38px rgba(17, 24, 39, 0.62);
  backdrop-filter: blur(14px);
}

.elmansi-nav-title {
  display: none;
}

.elmansi-nav-title:hover {
  color: var(--elmansi-ink);
  text-decoration: none;
}

.elmansi-nav-title span {
  color: var(--elmansi-gold);
}

.elmansi-nav .navbar-collapse {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.elmansi-nav .navbar-nav {
  min-height: 42px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  direction: rtl;
}

.elmansi-nav .nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 0 13px !important;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--elmansi-ink) !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.elmansi-nav .nav-link:hover,
.elmansi-nav .nav-link.active {
  color: var(--elmansi-blue) !important;
  border-color: rgba(23, 107, 135, 0.18);
  background: rgba(23, 107, 135, 0.08);
  text-decoration: none;
}

.elmansi-nav .nav-link i {
  color: var(--elmansi-gold);
}

.elmansi-nav-cta {
  position: static;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--elmansi-green);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--elmansi-green),
    var(--elmansi-blue)
  );
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 18px 36px -28px rgba(23, 129, 95, 0.8);
  direction: rtl;
}

.elmansi-nav-cta:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.elmansi-mobile-menu-toggle,
.elmansi-mobile-drawer,
.elmansi-mobile-overlay,
.elmansi-bottom-nav {
  display: none;
}

.elmansi-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background:
    radial-gradient(circle at 20% 0%, rgba(248, 140, 0, 0.18), transparent 28%),
    rgba(18, 48, 71, 0.62);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(3px);
  transition: opacity 0.25s ease;
}

.elmansi-mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.elmansi-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

.elmansi-mobile-panel {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: min(430px, 100vw);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(17, 24, 39, 0.1);
  background:
    radial-gradient(circle at 0% 10%, rgba(248, 140, 0, 0.12), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(23, 129, 95, 0.14), transparent 28%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.96)
    );
  box-shadow: -26px 0 70px -48px rgba(17, 24, 39, 0.85);
  transform: translateX(104%);
  opacity: 0;
  pointer-events: auto;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.elmansi-mobile-drawer.is-open {
  pointer-events: none;
}

.elmansi-mobile-drawer.is-open .elmansi-mobile-panel {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.elmansi-mobile-panel-head,
.elmansi-mobile-panel-footer {
  flex: 0 0 auto;
  padding: 16px;
}

.elmansi-mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.elmansi-mobile-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--elmansi-ink);
  text-decoration: none;
}

.elmansi-mobile-brand:hover {
  color: var(--elmansi-ink);
  text-decoration: none;
}

.elmansi-mobile-logo {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px -28px rgba(17, 24, 39, 0.7);
}

.elmansi-mobile-logo img {
  width: 44px;
  height: auto;
}

.elmansi-mobile-brand strong,
.elmansi-mobile-brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.elmansi-mobile-brand strong {
  color: #f88c00;
  font-size: clamp(14px, 3.25vw, 18px);
  font-weight: 1000;
  line-height: 1.35;
}

.elmansi-mobile-brand small {
  margin-top: 2px;
  color: #2199d4;
  font-size: clamp(10px, 2.7vw, 12px);
  font-weight: 900;
  line-height: 1.35;
}

.elmansi-mobile-close,
.elmansi-mobile-menu-toggle {
  width: 44px;
  height: 44px;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 140, 0, 0.28);
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(255, 255, 255, 0.26),
      transparent 34%
    ),
    linear-gradient(135deg, #f88c00, #17815f);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 28px -24px rgba(0, 0, 0, 0.8);
}

.elmansi-mobile-menu-toggle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 217, 154, 0.18);
  border-radius: 12px;
  pointer-events: none;
}

.elmansi-mobile-close {
  display: inline-flex;
  color: var(--elmansi-ink);
  border-color: rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.75);
}

.elmansi-mobile-close i,
.elmansi-mobile-menu-toggle i {
  position: relative;
  z-index: 1;
  font-size: 24px;
  line-height: 1;
}

.elmansi-mobile-panel-hero {
  margin: 0 16px 12px;
  padding: 16px;
  border: 1px solid rgba(23, 107, 135, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 0% 100%,
      rgba(248, 140, 0, 0.14),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.76);
}

.elmansi-mobile-panel-hero span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--elmansi-green);
  background: rgba(23, 129, 95, 0.1);
  font-size: 11px;
  font-weight: 1000;
}

.elmansi-mobile-panel-hero p {
  margin: 10px 0 0;
  color: var(--elmansi-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.9;
}

.elmansi-mobile-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 16px 12px;
}

.elmansi-mobile-quick a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.elmansi-mobile-links {
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 4px 16px 16px;
}

.elmansi-mobile-links a {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.elmansi-mobile-links a:hover {
  color: var(--elmansi-blue);
  background: #fff;
  text-decoration: none;
}

.elmansi-mobile-links a.active {
  color: var(--elmansi-blue);
  border-color: rgba(23, 107, 135, 0.18);
  background: #fff;
}

.elmansi-mobile-links a span:first-child {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
}

.elmansi-mobile-links a span:first-child > i {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--elmansi-green),
    var(--elmansi-blue)
  );
}

.elmansi-mobile-links strong,
.elmansi-mobile-links small {
  min-width: 0;
  display: block;
}

.elmansi-mobile-links strong {
  color: var(--elmansi-ink);
  font-size: 14px;
  font-weight: 1000;
}

.elmansi-mobile-links small {
  margin-top: 3px;
  color: var(--elmansi-muted);
  font-size: 11px;
  font-weight: 800;
}

.elmansi-mobile-panel-footer {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.elmansi-mobile-panel-footer a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--elmansi-green),
    var(--elmansi-blue)
  );
  font-size: 14px;
  font-weight: 1000;
  text-decoration: none;
}

.elmansi-bottom-nav {
  width: min(
    var(--elmansi-page-width),
    calc(100% - var(--elmansi-page-gutter))
  );
  position: fixed;
  right: 12px;
  left: 12px;
  bottom: 12px;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 250, 252, 0.82)
    ),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px -32px rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(16px);
}

.elmansi-bottom-nav a,
.elmansi-bottom-nav button {
  min-width: 0;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  flex-direction: column;
  gap: 2px;
  border: 0;
  border-radius: 18px;
  color: var(--elmansi-muted);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.elmansi-bottom-nav i {
  font-size: 20px;
  line-height: 1;
}

.elmansi-bottom-nav .is-active,
.elmansi-bottom-nav a:hover,
.elmansi-bottom-nav button:hover {
  color: var(--elmansi-blue);
  background: rgba(23, 107, 135, 0.08);
  text-decoration: none;
}

.elmansi-bottom-nav .is-primary {
  position: relative;
  top: -10px;
  height: 58px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--elmansi-gold),
    var(--elmansi-green)
  );
  box-shadow: 0 18px 34px -22px rgba(248, 140, 0, 0.9);
}

body.elmansi-menu-open {
  overflow: hidden;
}

.elmansi-hero-section {
  position: relative;
  overflow: hidden;
  direction: rtl;
  background:
    radial-gradient(circle at 12% 8%, rgba(248, 140, 0, 0.13), transparent 24%),
    radial-gradient(
      circle at 86% 16%,
      rgba(23, 129, 95, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #f8fafc 0%, #eef5f4 100%);
}

.elmansi-hero-wrap {
  position: relative;
  padding: 46px 0 58px;
  overflow: hidden;
}

.elmansi-hero-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(18, 48, 71, 0.14) 1.2px, transparent 1.2px),
    radial-gradient(rgba(248, 140, 0, 0.14) 1px, transparent 1px);
  background-position:
    0 0,
    18px 18px;
  background-size: 36px 36px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
  pointer-events: none;
  opacity: 0.75;
}

.elmansi-hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
}

.elmansi-hero-orb.is-1 {
  width: 330px;
  height: 330px;
  top: -155px;
  right: -105px;
  background: rgba(23, 107, 135, 0.16);
}

.elmansi-hero-orb.is-2 {
  width: 270px;
  height: 270px;
  left: -120px;
  bottom: -115px;
  background: rgba(248, 140, 0, 0.16);
}

.elmansi-hero-orb.is-3 {
  width: 180px;
  height: 180px;
  left: 48%;
  top: 18%;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.elmansi-hero-cells {
  position: absolute;
  left: 6%;
  top: 90px;
  width: 175px;
  height: 145px;
  pointer-events: none;
  opacity: 0.72;
}

.elmansi-hero-cells span {
  position: absolute;
  width: 48px;
  height: 54px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  border: 1px solid rgba(23, 107, 135, 0.2);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 36px -30px rgba(17, 24, 39, 0.5);
}

.elmansi-hero-cells span:nth-child(1) {
  right: 0;
  top: 38px;
}

.elmansi-hero-cells span:nth-child(2) {
  right: 42px;
  top: 8px;
  border-color: rgba(248, 140, 0, 0.28);
}

.elmansi-hero-cells span:nth-child(3) {
  right: 42px;
  top: 68px;
}

.elmansi-hero-cells span:nth-child(4) {
  right: 84px;
  top: 38px;
  border-color: rgba(23, 129, 95, 0.24);
}

.elmansi-hero-cells span:nth-child(5) {
  right: 126px;
  top: 68px;
  opacity: 0.7;
}

.elmansi-hero-swiper {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88),
      rgba(255, 255, 255, 0.72)
    ),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 34px 80px -62px rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(16px);
}

.elmansi-hero-swiper .swiper-slide {
  height: auto;
}

.elmansi-hero-slide {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 42px;
  align-items: center;
  padding: 52px 58px;
  direction: rtl;
  text-align: right;
}

.elmansi-hero-slide::before,
.elmansi-hero-slide::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.elmansi-hero-slide::before {
  width: 280px;
  height: 280px;
  top: -100px;
  right: -90px;
  background: var(--hero-soft);
}

.elmansi-hero-slide::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -100px;
  background: var(--hero-glow);
  opacity: 0.58;
}

.elmansi-hero-content,
.elmansi-hero-media {
  position: relative;
  z-index: 1;
}

.elmansi-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: stretch;
  gap: 15px;
  text-align: right;
}

.elmansi-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--hero-soft);
  border-radius: 999px;
  color: var(--hero-accent);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.elmansi-hero-content h1,
.elmansi-hero-content h2 {
  margin: 0;
  color: var(--elmansi-ink);
  font-size: clamp(27px, 3.4vw, 46px);
  font-weight: 900 !important;
  line-height: 1.32;
}

.elmansi-hero-content p {
  max-width: 620px;
  margin: 0;
  color: var(--elmansi-muted);
  font-size: 16px;
  line-height: 2;
}

.elmansi-hero-actions,
.elmansi-hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.elmansi-hero-actions {
  margin-top: 6px;
}

.elmansi-hero-primary,
.elmansi-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.elmansi-hero-primary {
  color: #fff;
  background: var(--hero-accent);
  box-shadow: 0 18px 34px -26px var(--hero-glow);
}

.elmansi-hero-primary:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.elmansi-hero-secondary {
  color: var(--elmansi-ink);
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.elmansi-hero-secondary:hover {
  color: var(--hero-accent);
  text-decoration: none;
  background: #fff;
  transform: translateY(-2px);
}

.elmansi-hero-features span {
  padding: 7px 12px;
  border: 1px dashed var(--hero-soft);
  border-radius: 999px;
  color: var(--elmansi-muted);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.elmansi-hero-media {
  display: grid;
  gap: 16px;
  justify-items: center;
  justify-self: stretch;
}

.elmansi-hero-image {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--hero-soft);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--elmansi-shadow);
}

.elmansi-hero-image::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px dashed var(--hero-soft);
  border-radius: 36px;
  pointer-events: none;
}

.elmansi-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.elmansi-hero-facts {
  width: min(370px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.elmansi-hero-facts div {
  padding: 13px 14px;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 36px -32px rgba(17, 24, 39, 0.55);
}

.elmansi-hero-facts span {
  display: block;
  color: var(--elmansi-muted);
  font-size: 11px;
  font-weight: 900;
}

.elmansi-hero-facts strong {
  display: block;
  margin-top: 5px;
  color: var(--hero-accent);
  font-size: 14px;
  font-weight: 900;
}

.elmansi-swiper-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 24, 39, 0.45);
  transform: translateY(-50%);
  box-shadow: 0 18px 34px -26px rgba(17, 24, 39, 0.6);
}

.elmansi-swiper-btn:hover {
  background: var(--elmansi-gold);
  border-color: var(--elmansi-gold);
}

.elmansi-hero-prev,
.elmansi-service-prev {
  right: 18px;
}

.elmansi-hero-next,
.elmansi-service-next {
  left: 18px;
}

.elmansi-hero-swiper .swiper-pagination {
  width: auto !important;
  left: 50% !important;
  bottom: 20px !important;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.86),
      rgba(248, 250, 252, 0.68)
    ),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 42px -30px rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(14px);
}

.swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(23, 107, 135, 0.2);
  background: rgba(255, 255, 255, 0.86);
  opacity: 1;
  box-shadow: 0 8px 18px -14px rgba(17, 24, 39, 0.8);
  transition:
    width 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
}

.swiper-pagination-bullet-active {
  width: 44px;
  border-color: rgba(248, 140, 0, 0.55);
  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(255, 255, 255, 0.92) 0 4px,
      transparent 5px
    ),
    linear-gradient(135deg, var(--elmansi-gold), var(--elmansi-green));
  box-shadow:
    0 12px 24px -16px rgba(248, 140, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

#ABOUT .bg-primary {
  background: linear-gradient(
    145deg,
    var(--elmansi-navy),
    var(--elmansi-blue)
  ) !important;
}

#ABOUT .display-3 {
  color: var(--elmansi-gold) !important;
}

.section-title {
  color: var(--elmansi-ink);
}

.section-title::before {
  background: var(--elmansi-gold);
}

.hik_list li::before {
  color: var(--elmansi-green) !important;
}

#services .container-fluid {
  background: linear-gradient(180deg, #fff, #f4f7fb);
}

.elmansi-service-swiper {
  min-height: 410px;
  padding: 10px 8px 48px;
  overflow: hidden;
}

.elmansi-service-swiper .swiper-slide {
  height: auto;
}

.elmansi-service-card {
  height: 100%;
  min-height: 385px;
  border: 1px solid var(--elmansi-line);
  border-radius: 8px;
  background: #fff !important;
  box-shadow: 0 22px 56px -42px rgba(17, 24, 39, 0.62);
}

.elmansi-service-card h1 {
  color: var(--elmansi-blue) !important;
}

.elmansi-service-card h2 {
  color: var(--elmansi-ink);
  font-weight: 800 !important;
}

.elmansi-service-card p {
  color: var(--elmansi-muted);
}

.elmansi-service-swiper .elmansi-swiper-btn {
  top: auto;
  bottom: 0;
  color: var(--elmansi-ink);
  background: #fff;
  border-color: var(--elmansi-line);
}

.elmansi-service-swiper .elmansi-swiper-btn:hover {
  color: #fff;
  background: var(--elmansi-blue);
  border-color: var(--elmansi-blue);
}

.elmansi-service-swiper .swiper-pagination {
  bottom: 12px;
}

.elmansi-service-swiper .swiper-pagination-bullet {
  background: rgba(17, 24, 39, 0.22);
}

.elmansi-service-swiper .swiper-pagination-bullet-active {
  background: var(--elmansi-green);
}

.btn-primary,
.hik_btn {
  color: #fff !important;
  background: var(--elmansi-gold) !important;
  border-color: var(--elmansi-gold) !important;
  border-radius: 8px;
  box-shadow: 0 16px 32px -26px rgba(248, 140, 0, 0.8);
}

.btn-primary:hover,
.hik_btn:hover {
  background: #df7900 !important;
  border-color: #df7900 !important;
  transform: translateY(-2px);
}

.elmansi-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: #fff;
  direction: rtl;
  text-align: right;
}

.elmansi-section-head {
  max-width: 760px;
  margin-bottom: 30px;
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.elmansi-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--elmansi-green);
  font-size: 13px;
  font-weight: 900;
}

.elmansi-kicker::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--elmansi-gold);
}

.elmansi-section-head h2,
.elmansi-about-card h2,
.elmansi-coverage-panel h2,
.elmansi-home-cta h2 {
  margin: 0;
  color: var(--elmansi-ink);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 1000;
  line-height: 1.45;
}

.elmansi-section-head p,
.elmansi-about-card p,
.elmansi-service-box p,
.elmansi-step-card p,
.elmansi-faq-card p {
  color: var(--elmansi-muted);
  line-height: 1.95;
}

.elmansi-trust-strip {
  padding: 28px 0;
  background:
    linear-gradient(
      90deg,
      rgba(23, 107, 135, 0.08),
      rgba(23, 129, 95, 0.1),
      rgba(248, 140, 0, 0.08)
    ),
    #f8fafc;
}

.elmansi-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.elmansi-trust-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 48px -42px rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  text-align: right;
}

.elmansi-trust-card i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--elmansi-blue),
    var(--elmansi-green)
  );
}

.elmansi-trust-card strong {
  color: var(--elmansi-ink);
  font-size: 18px;
  font-weight: 1000;
}

.elmansi-trust-card span {
  color: var(--elmansi-muted);
  font-size: 13px;
  font-weight: 800;
}

.elmansi-about-modern {
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(248, 140, 0, 0.12),
      transparent 24%
    ),
    radial-gradient(circle at 88% 8%, rgba(23, 129, 95, 0.12), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f3f8f7 100%);
}

.elmansi-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
  direction: rtl;
}

.elmansi-about-card,
.elmansi-about-visual,
.elmansi-service-box,
.elmansi-step-card,
.elmansi-coverage-panel,
.elmansi-faq-card {
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--elmansi-shadow);
  backdrop-filter: blur(14px);
}

.elmansi-about-card {
  padding: 34px;
  text-align: right;
}

.elmansi-about-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.elmansi-about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--elmansi-ink);
  font-weight: 800;
  line-height: 1.9;
}

.elmansi-about-list i {
  margin-top: 7px;
  color: var(--elmansi-green);
}

.elmansi-about-visual {
  padding: 14px;
}

.elmansi-about-visual img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 20px;
}

.elmansi-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.elmansi-mini-stats div {
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  text-align: center;
}

.elmansi-mini-stats span,
.elmansi-mini-stats strong {
  display: block;
}

.elmansi-mini-stats span {
  color: var(--elmansi-muted);
  font-size: 12px;
  font-weight: 900;
}

.elmansi-mini-stats strong {
  margin-top: 5px;
  color: var(--elmansi-blue);
  font-weight: 1000;
}

.elmansi-about-page {
  background: #fff;
}

.elmansi-about-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  direction: rtl;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(33, 153, 212, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(248, 140, 0, 0.13),
      transparent 32%
    ),
    linear-gradient(180deg, #f8fafc 0%, #eef7f8 100%);
}

.elmansi-about-hero::before {
  content: "";
  position: absolute;
  inset-inline-start: -90px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(33, 153, 212, 0.1);
}

.elmansi-about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
}

.elmansi-about-hero-content,
.elmansi-about-story-card,
.elmansi-about-hero-card,
.elmansi-about-values-grid article,
.elmansi-about-timeline-box {
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--elmansi-shadow);
  backdrop-filter: blur(14px);
}

.elmansi-about-hero-content {
  padding: 34px;
  text-align: right;
}

.elmansi-about-hero-content h1 {
  margin: 0;
  max-width: 780px;
  color: var(--elmansi-ink);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 1000;
  line-height: 1.35;
}

.elmansi-about-hero-content p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--elmansi-muted);
  font-size: 17px;
  line-height: 2;
}

.elmansi-about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.elmansi-about-hero-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(23, 107, 135, 0.16);
  border-radius: 16px;
  color: var(--elmansi-ink);
  background: #fff;
  font-weight: 1000;
  text-decoration: none;
}

.elmansi-about-hero-actions a.is-primary {
  color: #fff;
  border-color: rgba(23, 129, 95, 0.42);
  background: linear-gradient(
    135deg,
    var(--elmansi-green),
    var(--elmansi-blue)
  );
}

.elmansi-about-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px;
  text-align: right;
  isolation: isolate;
}

.elmansi-about-hero-card::before {
  content: "";
  position: absolute;
  inset-inline-start: -50px;
  bottom: -58px;
  width: 230px;
  height: 180px;
  opacity: 0.2;
  background:
    linear-gradient(to top, #2199d4, #2199d4) 22px 92px / 25px 86px no-repeat,
    linear-gradient(to top, #2199d4, #2199d4) 62px 58px / 17px 120px no-repeat,
    linear-gradient(to top, #2199d4, #2199d4) 96px 18px / 14px 160px no-repeat,
    linear-gradient(to top, #2199d4, #2199d4) 130px 72px / 28px 106px no-repeat,
    linear-gradient(to top, #2199d4, #2199d4) 174px 102px / 34px 76px no-repeat;
  z-index: -1;
}

.elmansi-about-hero-card::after {
  content: "المنسي";
  position: absolute;
  inset-inline-start: -14px;
  bottom: -20px;
  color: rgba(248, 140, 0, 0.12);
  font-size: 92px;
  font-weight: 1000;
  line-height: 1;
  z-index: -1;
}

.elmansi-about-hero-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #f88c00, #176b87);
  font-size: 34px;
}

.elmansi-about-hero-card strong {
  display: block;
  margin-top: 22px;
  color: var(--elmansi-ink);
  font-size: 25px;
  font-weight: 1000;
}

.elmansi-about-hero-card p {
  margin: 12px 0 0;
  color: var(--elmansi-muted);
  line-height: 1.9;
}

.elmansi-about-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 26px;
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
}

.elmansi-about-route span {
  color: var(--elmansi-ink);
  font-weight: 1000;
}

.elmansi-about-route i {
  color: #2199d4;
  font-size: 22px;
}

.elmansi-about-story {
  background: #fff;
}

.elmansi-about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 22px;
  align-items: stretch;
  direction: rtl;
}

.elmansi-about-story-card {
  padding: 34px;
  text-align: right;
}

.elmansi-about-story-card h2 {
  margin: 0;
  color: var(--elmansi-ink);
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 1000;
  line-height: 1.45;
}

.elmansi-about-story-card p {
  margin: 16px 0 0;
  color: var(--elmansi-muted);
  line-height: 2;
}

.elmansi-about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.elmansi-about-stats div {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(33, 153, 212, 0.12), transparent 40%),
    #f8fafc;
  text-align: right;
}

.elmansi-about-stats div:nth-child(even) {
  background:
    radial-gradient(circle at 0% 0%, rgba(248, 140, 0, 0.12), transparent 40%),
    #fffaf3;
}

.elmansi-about-stats span,
.elmansi-about-stats strong {
  display: block;
}

.elmansi-about-stats span {
  color: var(--elmansi-muted);
  font-size: 13px;
  font-weight: 900;
}

.elmansi-about-stats strong {
  margin-top: 12px;
  color: var(--elmansi-ink);
  font-size: 20px;
  font-weight: 1000;
  line-height: 1.5;
}

.elmansi-about-values {
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(248, 140, 0, 0.09),
      transparent 28%
    ),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.elmansi-about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  direction: rtl;
}

.elmansi-about-values-grid article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 22px;
  text-align: right;
}

.elmansi-about-values-grid article::before {
  content: "";
  position: absolute;
  inset-inline-start: -35px;
  bottom: -38px;
  width: 150px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(33, 153, 212, 0.14),
    transparent 70%
  );
}

.elmansi-about-values-grid span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #176b87, #17815f);
  font-size: 26px;
}

.elmansi-about-values-grid h3 {
  margin: 18px 0 8px;
  color: var(--elmansi-ink);
  font-size: 19px;
  font-weight: 1000;
}

.elmansi-about-values-grid p {
  margin: 0;
  color: var(--elmansi-muted);
  line-height: 1.9;
}

.elmansi-about-timeline {
  background: #fff;
}

.elmansi-about-timeline-box {
  padding: 30px;
}

.elmansi-about-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  direction: rtl;
}

.elmansi-about-timeline-grid div {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 20px;
  background: #f8fafc;
  text-align: right;
}

.elmansi-about-timeline-grid span {
  display: inline-flex;
  color: rgba(33, 153, 212, 0.26);
  font-size: 42px;
  font-weight: 1000;
  line-height: 1;
}

.elmansi-about-timeline-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--elmansi-ink);
  font-size: 17px;
  font-weight: 1000;
}

.elmansi-about-timeline-grid p {
  margin: 8px 0 0;
  color: var(--elmansi-muted);
  line-height: 1.8;
}

.elmansi-contact-page {
  position: relative;
  overflow: hidden;
  color: var(--elmansi-muted);
  background:
    radial-gradient(circle at 88% 7%, rgba(23, 129, 95, 0.1), transparent 28%),
    radial-gradient(circle at 8% 26%, rgba(248, 140, 0, 0.1), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f3f7f7 100%);
}

.elmansi-contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(18, 48, 71, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(248, 140, 0, 0.1) 1px, transparent 1px);
  background-position:
    0 0,
    17px 17px;
  background-size: 34px 34px;
  opacity: 0.48;
}

.elmansi-contact-page > section,
.elmansi-contact-page .container {
  position: relative;
  z-index: 1;
}

.elmansi-contact-page .container {
  max-width: 1140px;
}

.elmansi-contact-hero,
.elmansi-contact-main,
.elmansi-contact-bottom {
  padding: 40px 0;
  direction: rtl;
  text-align: right;
}

.elmansi-contact-hero-box,
.elmansi-contact-panel,
.elmansi-contact-form-panel {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(240, 247, 255, 0.88)
    ),
    #fff;
  box-shadow: 0 26px 62px -44px rgba(17, 24, 39, 0.44);
  backdrop-filter: blur(14px);
}

.elmansi-contact-hero-box {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
}

.elmansi-contact-hero-box::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(23, 107, 135, 0.09);
  border-radius: 22px;
  pointer-events: none;
}

.elmansi-contact-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  filter: blur(38px);
  pointer-events: none;
}

.elmansi-contact-glow.is-right {
  top: 0;
  right: -48px;
  background: rgba(23, 107, 135, 0.12);
}

.elmansi-contact-glow.is-left {
  left: -42px;
  bottom: 0;
  background: rgba(23, 129, 95, 0.12);
}

.elmansi-contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
}

.elmansi-contact-pill,
.elmansi-contact-actions a,
.elmansi-contact-form-actions button,
.elmansi-contact-form-actions small,
.elmansi-contact-panel-head > span,
.elmansi-contact-availability a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.elmansi-contact-pill {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--elmansi-blue);
  background: rgba(23, 107, 135, 0.08);
  font-size: 12px;
  font-weight: 1000;
}

.elmansi-contact-copy h1 {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--elmansi-ink);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 1000;
  line-height: 1.35;
}

.elmansi-contact-copy p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #5f6b7a;
  font-size: 16px;
  line-height: 2;
}

.elmansi-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.elmansi-contact-actions a {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 1000;
  text-decoration: none;
}

.elmansi-contact-actions a:hover,
.elmansi-contact-availability a:hover {
  color: var(--elmansi-blue);
  border-color: rgba(23, 107, 135, 0.24);
  background: #fff;
  box-shadow: 0 18px 38px -30px rgba(17, 24, 39, 0.52);
  transform: translateY(-2px);
}

.elmansi-contact-actions a.is-primary:hover,
.elmansi-contact-form-actions button:hover,
.elmansi-contact-availability a.is-whatsapp:hover {
  color: #fff;
  border-color: rgba(23, 129, 95, 0.45);
  background: linear-gradient(
    135deg,
    var(--elmansi-green),
    var(--elmansi-blue)
  );
  box-shadow: 0 20px 42px -26px rgba(23, 129, 95, 0.7);
}

.elmansi-contact-actions a.is-primary,
.elmansi-contact-form-actions button,
.elmansi-contact-availability a.is-whatsapp {
  color: #fff;
  border-color: rgba(23, 107, 135, 0.42);
  background: linear-gradient(
    135deg,
    var(--elmansi-blue),
    var(--elmansi-green)
  );
  box-shadow: 0 18px 36px -24px rgba(15, 76, 129, 0.7);
}

.elmansi-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.elmansi-contact-card {
  padding: 22px;
  border: 1px solid rgba(23, 107, 135, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px -32px rgba(15, 76, 129, 0.34);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.elmansi-contact-card:hover {
  border-color: rgba(23, 129, 95, 0.22);
  box-shadow: 0 24px 46px -34px rgba(23, 129, 95, 0.46);
  transform: translateY(-3px);
}

.elmansi-contact-card.is-wide {
  grid-column: 1 / -1;
}

.elmansi-contact-card > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--elmansi-blue);
  background: rgba(23, 107, 135, 0.08);
  font-size: 22px;
}

.elmansi-contact-card:nth-child(2) > span {
  color: var(--elmansi-green);
  background: rgba(23, 129, 95, 0.1);
}

.elmansi-contact-card.is-wide > span {
  color: var(--elmansi-gold);
  background: rgba(248, 140, 0, 0.12);
}

.elmansi-contact-card h2 {
  margin: 16px 0 0;
  color: var(--elmansi-ink);
  font-size: 18px;
  font-weight: 1000;
}

.elmansi-contact-card p {
  margin: 8px 0 0;
  color: #566274;
  line-height: 1.8;
  font-weight: 800;
}

.elmansi-contact-card small {
  display: block;
  margin-top: 4px;
  color: #8a94a3;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.8;
}

.elmansi-contact-layout,
.elmansi-contact-bottom-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.elmansi-contact-side {
  display: grid;
  gap: 20px;
}

.elmansi-contact-panel,
.elmansi-contact-form-panel {
  padding: clamp(22px, 2.6vw, 30px);
}

.elmansi-contact-label {
  margin: 0;
  color: var(--elmansi-blue);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.elmansi-contact-label.is-accent {
  color: var(--elmansi-green);
}

.elmansi-contact-panel h2,
.elmansi-contact-form-panel h2 {
  margin: 10px 0 0;
  color: var(--elmansi-ink);
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 1000;
  line-height: 1.45;
}

.elmansi-contact-form-panel > p {
  margin: 10px 0 0;
  color: #667085;
  line-height: 1.9;
}

.elmansi-contact-steps {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.elmansi-contact-steps > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.elmansi-contact-steps > div > span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: var(--elmansi-blue);
  background: rgba(23, 107, 135, 0.08);
  font-size: 14px;
  font-weight: 1000;
}

.elmansi-contact-steps > div:nth-child(2) > span {
  color: var(--elmansi-green);
  background: rgba(23, 129, 95, 0.1);
}

.elmansi-contact-steps > div:nth-child(3) > span {
  color: var(--elmansi-gold);
  background: rgba(248, 140, 0, 0.12);
}

.elmansi-contact-steps h3,
.elmansi-contact-mini-faq h3 {
  margin: 0;
  color: var(--elmansi-ink);
  font-size: 15px;
  font-weight: 1000;
}

.elmansi-contact-steps p,
.elmansi-contact-mini-faq p {
  margin: 5px 0 0;
  color: #64748b;
  line-height: 1.85;
}

.elmansi-contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.elmansi-contact-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #475569;
  background: rgba(23, 107, 135, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.elmansi-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.elmansi-contact-form label {
  display: block;
}

.elmansi-contact-form label.is-full {
  grid-column: 1 / -1;
}

.elmansi-contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 900;
}

.elmansi-contact-form input,
.elmansi-contact-form select,
.elmansi-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.36);
  border-radius: 16px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  font: inherit;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.elmansi-contact-form input:hover,
.elmansi-contact-form select:hover,
.elmansi-contact-form textarea:hover {
  border-color: rgba(23, 107, 135, 0.3);
}

.elmansi-contact-form input,
.elmansi-contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.elmansi-contact-form textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
}

.elmansi-contact-form input:focus,
.elmansi-contact-form select:focus,
.elmansi-contact-form textarea:focus {
  border-color: var(--elmansi-blue);
  box-shadow: 0 0 0 4px rgba(23, 107, 135, 0.08);
}

.elmansi-contact-form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.elmansi-contact-form-actions button {
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.elmansi-contact-form-actions small {
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  color: #64748b;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 900;
}

.elmansi-contact-bottom-grid {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

.elmansi-contact-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.elmansi-contact-panel-head > span {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--elmansi-blue);
  background: rgba(23, 107, 135, 0.08);
  font-size: 12px;
  font-weight: 1000;
}

.elmansi-contact-availability {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 28px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  border-radius: 22px;
  color: #64748b;
  background:
    radial-gradient(circle at 90% 0%, rgba(248, 140, 0, 0.13), transparent 25%),
    linear-gradient(180deg, #f8fbff, #edf7f2);
  text-align: center;
}

.elmansi-contact-availability > i {
  color: var(--elmansi-blue);
  font-size: 44px;
}

.elmansi-contact-availability p {
  margin: 4px 0 0;
  color: #475569;
  font-weight: 900;
}

.elmansi-contact-availability small {
  color: #64748b;
}

.elmansi-contact-availability div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.elmansi-contact-availability a {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  color: var(--elmansi-blue);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.elmansi-contact-availability a:nth-child(2) {
  color: var(--elmansi-green);
}

.elmansi-contact-availability a:nth-child(3) {
  color: #a86600;
}

.elmansi-contact-mini-faq {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.elmansi-contact-mini-faq div {
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
}

.elmansi-services-modern {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(23, 129, 95, 0.1), transparent 26%),
    radial-gradient(
      circle at 92% 12%,
      rgba(248, 140, 0, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.elmansi-services-modern::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(23, 107, 135, 0.08),
    transparent
  );
}

.elmansi-services-modern .container {
  position: relative;
  z-index: 1;
}

.elmansi-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  direction: rtl;
}

.elmansi-service-box {
  position: relative;
  min-height: 260px;
  padding: 22px 22px 24px;
  overflow: hidden;
  border-color: rgba(23, 107, 135, 0.14);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.84)
    ),
    radial-gradient(circle at 16% 8%, rgba(23, 129, 95, 0.12), transparent 28%);
  box-shadow: 0 24px 62px -44px rgba(18, 48, 71, 0.68);
  text-align: right;
}

.elmansi-service-box::before {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -28px;
  width: 168px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(18, 48, 71, 0.12),
    rgba(23, 107, 135, 0.05) 48%,
    transparent 72%
  );
  filter: blur(1px);
  pointer-events: none;
}

.elmansi-service-box::after {
  content: "";
  position: absolute;
  top: 86px;
  right: 34px;
  left: 34px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(23, 107, 135, 0.05),
    rgba(23, 107, 135, 0.2),
    rgba(248, 140, 0, 0.16)
  );
}

.elmansi-service-head {
  position: relative;
  z-index: 1;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px 16px 10px 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(23, 107, 135, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(
      90deg,
      rgba(23, 107, 135, 0.1),
      rgba(255, 255, 255, 0.68) 42%,
      rgba(248, 250, 252, 0.84)
    ),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.elmansi-service-head::before {
  content: "";
  width: 6px;
  height: 30px;
  flex: 0 0 auto;
  margin-left: 10px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--elmansi-gold),
    var(--elmansi-green)
  );
  box-shadow: 0 10px 22px -14px rgba(248, 140, 0, 0.9);
}

.elmansi-service-head::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 11px;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(23, 107, 135, 0.16);
}

.elmansi-service-icon {
  position: absolute;
  left: -12px;
  bottom: -24px;
  z-index: 0;
  width: auto;
  height: auto;
  display: block;
  color: rgba(23, 107, 135, 0.09);
  font-size: 118px;
  line-height: 1;
  pointer-events: none;
}

.elmansi-service-box:nth-child(even) .elmansi-service-icon {
  color: rgba(248, 140, 0, 0.11);
}

.elmansi-service-box h3,
.elmansi-step-card h3,
.elmansi-faq-card h3 {
  margin: 0 0 10px;
  color: var(--elmansi-ink);
  font-size: 19px;
  font-weight: 1000;
}

.elmansi-service-box h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.elmansi-service-box p {
  position: relative;
  z-index: 1;
  line-height: 1.95;
}

.elmansi-service-box:hover {
  border-color: rgba(248, 140, 0, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -44px rgba(18, 48, 71, 0.78);
}

.elmansi-process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(248, 140, 0, 0.12),
      transparent 27%
    ),
    radial-gradient(circle at 88% 4%, rgba(23, 129, 95, 0.14), transparent 30%),
    linear-gradient(180deg, #f7fbfb 0%, #eef7f4 100%);
}

.elmansi-process::before {
  content: "";
  position: absolute;
  inset: 32px 0 auto;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(23, 107, 135, 0.13),
    transparent
  );
  opacity: 0.75;
}

.elmansi-process .container {
  position: relative;
  z-index: 1;
}

.elmansi-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: elmansi-steps;
  direction: rtl;
}

.elmansi-step-card {
  position: relative;
  min-height: 230px;
  padding: 22px 22px 24px;
  overflow: hidden;
  border-color: rgba(23, 107, 135, 0.15);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.82)
    ),
    radial-gradient(circle at 18% 10%, rgba(248, 140, 0, 0.16), transparent 28%);
  box-shadow: 0 24px 62px -42px rgba(18, 48, 71, 0.7);
  text-align: right;
}

.elmansi-step-card::after {
  content: "";
  position: absolute;
  top: 100px;
  right: 34px;
  left: 34px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(23, 107, 135, 0.05),
    rgba(23, 107, 135, 0.22),
    rgba(248, 140, 0, 0.18)
  );
}

.elmansi-step-head {
  position: relative;
  z-index: 1;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  margin-bottom: 26px;
  border: 1px solid rgba(23, 107, 135, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(
      ellipse at 24% 100%,
      rgba(248, 140, 0, 0.16),
      transparent 34%
    ),
    radial-gradient(
      ellipse at 70% 0%,
      rgba(23, 129, 95, 0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.86),
      rgba(248, 250, 252, 0.72)
    ),
    rgba(23, 107, 135, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.elmansi-step-head::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 8px;
  width: 74px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(18, 48, 71, 0.18),
    rgba(23, 107, 135, 0.08) 45%,
    transparent 72%
  );
  filter: blur(1px);
}

.elmansi-step-head::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -30px;
  width: 118px;
  height: 74px;
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(248, 140, 0, 0.18),
      transparent 64%
    );
  opacity: 0.9;
}

.elmansi-step-icon {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 129, 95, 0.2);
  border-radius: 14px;
  color: #fff;
  font-size: 22px;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.34),
      transparent 36%
    ),
    linear-gradient(135deg, var(--elmansi-green), var(--elmansi-blue));
  box-shadow: 0 16px 32px -24px rgba(23, 107, 135, 0.9);
  z-index: 1;
}

.elmansi-step-icon i {
  line-height: 1;
}

.elmansi-step-card::before {
  counter-increment: elmansi-steps;
  content: counter(elmansi-steps);
  position: absolute;
  left: -12px;
  bottom: -26px;
  color: rgba(23, 107, 135, 0.08);
  font-size: 132px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.7);
  z-index: 0;
  pointer-events: none;
}

.elmansi-step-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--elmansi-ink);
  font-size: 18px;
  line-height: 1.45;
}

.elmansi-step-card p {
  line-height: 1.95;
}

.elmansi-step-card:hover {
  border-color: rgba(248, 140, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -44px rgba(18, 48, 71, 0.8);
}

.elmansi-coverage {
  background: #fff;
}

.elmansi-coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  direction: rtl;
}

.elmansi-coverage-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  text-align: right;
  isolation: isolate;
  background:
    radial-gradient(circle at 0% 0%, rgba(248, 140, 0, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.elmansi-coverage-panel::before {
  position: absolute;
  inset-inline-start: 18px;
  bottom: 12px;
  color: rgba(23, 107, 135, 0.07);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
}

.elmansi-coverage-panel::after {
  content: "";
  position: absolute;
  inset-inline-start: -18px;
  bottom: -24px;
  width: 190px;
  height: 150px;
  opacity: 0.22;
  z-index: -1;
  pointer-events: none;
}

.elmansi-coverage-panel.is-uae {
  background:
    radial-gradient(circle at 0% 0%, rgba(33, 153, 212, 0.13), transparent 35%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94),
      rgba(239, 249, 253, 0.86)
    );
}

.elmansi-coverage-panel.is-uae::before {
  content: "برج خليفة";
}

.elmansi-coverage-panel.is-uae::after {
  width: 210px;
  height: 168px;
  background:
    linear-gradient(to top, rgba(33, 153, 212, 0.72), rgba(33, 153, 212, 0.72))
      18px 82px / 24px 86px no-repeat,
    linear-gradient(to top, rgba(33, 153, 212, 0.72), rgba(33, 153, 212, 0.72))
      55px 54px / 18px 114px no-repeat,
    linear-gradient(to top, rgba(33, 153, 212, 0.72), rgba(33, 153, 212, 0.72))
      88px 16px / 14px 152px no-repeat,
    linear-gradient(to top, rgba(33, 153, 212, 0.72), rgba(33, 153, 212, 0.72))
      119px 68px / 26px 100px no-repeat,
    linear-gradient(to top, rgba(33, 153, 212, 0.72), rgba(33, 153, 212, 0.72))
      160px 98px / 34px 70px no-repeat;
  border-radius: 18px;
}

.elmansi-coverage-panel.is-egypt {
  background:
    radial-gradient(circle at 0% 0%, rgba(248, 140, 0, 0.14), transparent 36%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 247, 235, 0.86)
    );
}

.elmansi-coverage-panel.is-egypt::before {
  content: "الأهرام";
  color: rgba(248, 140, 0, 0.1);
}

.elmansi-coverage-panel.is-egypt::after {
  width: 230px;
  height: 142px;
  background:
    linear-gradient(135deg, transparent 50%, rgba(248, 140, 0, 0.72) 50%) 22px
      28px / 104px 104px no-repeat,
    linear-gradient(135deg, transparent 50%, rgba(248, 140, 0, 0.62) 50%) 102px
      48px / 84px 84px no-repeat,
    linear-gradient(135deg, transparent 50%, rgba(248, 140, 0, 0.52) 50%) 160px
      70px / 58px 58px no-repeat;
  transform: skewX(-8deg);
}

.elmansi-coverage-panel > * {
  position: relative;
  z-index: 1;
}

.elmansi-chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 9px;
  margin-top: 22px;
}

.elmansi-chip-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid rgba(23, 107, 135, 0.16);
  border-radius: 999px;
  color: var(--elmansi-ink);
  background: #f8fafc;
  font-size: 13px;
  font-weight: 900;
}

.elmansi-faq {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(33, 153, 212, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 92% 80%, rgba(248, 140, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fafc, #eef5f4);
}

.elmansi-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  direction: rtl;
}

.elmansi-faq-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  text-align: right;
  isolation: isolate;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.elmansi-faq-card::before {
  content: "";
  position: absolute;
  inset-inline-start: -44px;
  bottom: -52px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(33, 153, 212, 0.16),
    transparent 68%
  );
  z-index: -1;
}

.elmansi-faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 153, 212, 0.26);
  box-shadow: 0 24px 55px -36px rgba(17, 24, 39, 0.9);
}

.elmansi-faq-card h3 {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 14px;
  border: 1px solid rgba(33, 153, 212, 0.16);
  border-radius: 18px;
  color: #123047;
  background:
    linear-gradient(135deg, rgba(33, 153, 212, 0.12), rgba(248, 140, 0, 0.08)),
    #ffffff;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
}

.elmansi-faq-card h3::before {
  content: "؟";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2199d4, #176b87);
  box-shadow: 0 14px 26px -20px rgba(33, 153, 212, 0.9);
  font-size: 20px;
  font-weight: 1000;
}

.elmansi-faq-card p {
  position: relative;
  margin: 12px 0 0;
  padding: 14px 16px 14px 14px;
  border-radius: 16px;
  color: #4b5563;
  background: rgba(248, 250, 252, 0.82);
  font-size: 14px;
  line-height: 2;
}

.elmansi-faq-card p::before {
  content: "الجواب";
  display: inline-flex;
  margin-inline-end: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  color: #176b87;
  background: rgba(33, 153, 212, 0.1);
  font-size: 11px;
  font-weight: 1000;
  line-height: 1.6;
  vertical-align: baseline;
}

.elmansi-home-cta {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: #fff;
  direction: rtl;
  text-align: right;
  background:
    radial-gradient(circle at 12% 8%, rgba(33, 153, 212, 0.3), transparent 30%),
    radial-gradient(
      circle at 88% 92%,
      rgba(248, 140, 0, 0.26),
      transparent 32%
    ),
    linear-gradient(135deg, #123047 0%, #176b87 52%, #17815f 100%);
}

.elmansi-home-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.elmansi-home-cta::after {
  content: "";
  position: absolute;
  inset-inline-start: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.elmansi-home-cta-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: 0 30px 70px -46px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
}

.elmansi-home-cta-mark {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  color: #123047;
  background: linear-gradient(135deg, #ffffff, #dff3fb);
  box-shadow: 0 22px 42px -28px rgba(0, 0, 0, 0.9);
}

.elmansi-home-cta-mark i {
  font-size: 40px;
  line-height: 1;
}

.elmansi-home-cta-content {
  min-width: 0;
  flex: 1 1 auto;
}

.elmansi-home-cta span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 5px 11px;
  border: 1px solid rgba(248, 140, 0, 0.35);
  border-radius: 999px;
  color: #ffd690;
  background: rgba(248, 140, 0, 0.12);
  font-size: 13px;
  font-weight: 1000;
}

.elmansi-home-cta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f88c00;
  box-shadow: 0 0 0 5px rgba(248, 140, 0, 0.14);
}

.elmansi-home-cta h2 {
  color: #fff;
  max-width: 620px;
  font-size: clamp(22px, 2.35vw, 31px);
  font-weight: 1000;
  line-height: 1.55;
  text-wrap: balance;
}

.elmansi-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  flex: 0 0 auto;
}

.elmansi-cta-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 1000;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.elmansi-cta-actions a:first-child {
  color: #123047;
  background: linear-gradient(135deg, #f88c00, #ffd37c);
  border-color: rgba(248, 140, 0, 0.82);
}

.elmansi-cta-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.9);
  text-decoration: none;
}

.elmansi-cta-actions a:first-child:hover {
  color: #123047;
}

.elmansi-cta-actions a:not(:first-child):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

/* Refined home CTA identity. */
.elmansi-home-cta {
  padding: 54px 0;
  color: var(--elmansi-ink);
  background:
    linear-gradient(90deg, rgba(23, 107, 135, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 129, 95, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 88% 18%, rgba(248, 140, 0, 0.13), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef7f4 100%);
  background-size:
    28px 28px,
    28px 28px,
    auto,
    auto;
}

.elmansi-home-cta::before {
  inset: auto var(--elmansi-container-gutter) 0;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(23, 107, 135, 0.22), transparent);
}

.elmansi-home-cta::after {
  inset-inline-start: auto;
  right: max(18px, calc((100vw - var(--elmansi-page-width)) / 2));
  bottom: 28px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(23, 129, 95, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(23, 129, 95, 0.12), rgba(23, 107, 135, 0.05));
  transform: rotate(8deg);
}

.elmansi-home-cta-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(23, 107, 135, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 100%, rgba(248, 140, 0, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 249, 0.9));
  box-shadow: 0 24px 64px -44px rgba(18, 48, 71, 0.45);
  backdrop-filter: blur(10px);
}

.elmansi-home-cta-mark {
  width: 68px;
  height: 68px;
  border-color: rgba(23, 107, 135, 0.16);
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, var(--elmansi-blue), var(--elmansi-green));
  box-shadow: 0 18px 34px -24px rgba(23, 107, 135, 0.72);
}

.elmansi-home-cta-mark i {
  font-size: 34px;
}

.elmansi-home-cta span {
  border-color: rgba(248, 140, 0, 0.2);
  color: #a45b00;
  background: rgba(248, 140, 0, 0.09);
}

.elmansi-home-cta h2 {
  max-width: 700px;
  color: var(--elmansi-ink);
  font-size: clamp(22px, 2.25vw, 30px);
  line-height: 1.45;
}

.elmansi-cta-actions {
  justify-content: flex-end;
}

.elmansi-cta-actions a {
  min-height: 46px;
  border-color: rgba(23, 107, 135, 0.16);
  color: var(--elmansi-blue);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px -24px rgba(18, 48, 71, 0.42);
}

.elmansi-cta-actions a:first-child {
  color: #fff;
  border-color: rgba(23, 129, 95, 0.32);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--elmansi-green), var(--elmansi-blue));
}

.elmansi-cta-actions a:hover {
  color: var(--elmansi-blue);
  border-color: rgba(23, 107, 135, 0.26);
  background: #fff;
  box-shadow: 0 20px 38px -28px rgba(18, 48, 71, 0.55);
}

.elmansi-cta-actions a:first-child:hover {
  color: #fff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #15916a, #145f7b);
}

.elmansi-home-keywords {
  position: relative;
  padding: 34px 0 18px;
  direction: rtl;
  text-align: right;
  background:
    radial-gradient(circle at 12% 16%, rgba(23, 129, 95, 0.08), transparent 28%),
    linear-gradient(180deg, #eef7f4 0%, #ffffff 100%);
}

.elmansi-home-keywords-box {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(23, 107, 135, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(248, 140, 0, 0.09), transparent 28%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 56px -42px rgba(18, 48, 71, 0.38);
}

.elmansi-home-keywords-head h2 {
  margin: 0;
  color: var(--elmansi-ink);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 1000;
  line-height: 1.45;
}

.elmansi-home-keywords-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 9px;
}

.elmansi-home-keywords-list a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 107, 135, 0.12);
  border-radius: 999px;
  color: #355367;
  background: rgba(248, 250, 252, 0.86);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.elmansi-home-keywords-list a i {
  color: var(--elmansi-green);
  font-size: 16px;
}

.elmansi-home-keywords-list a:hover {
  color: var(--elmansi-blue);
  border-color: rgba(23, 129, 95, 0.26);
  background: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.elmansi-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  color: var(--elmansi-ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(248, 140, 0, 0.12), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(23, 129, 95, 0.13), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef5f4 100%);
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

@media (min-width: 992px) {
  .elmansi-footer {
    width: min(
      var(--elmansi-page-width),
      calc(100% - var(--elmansi-page-gutter))
    );
    margin: 56px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 32px 32px 0 0;
    box-shadow: 0 28px 60px -40px rgba(15, 76, 129, 0.32);
  }
}

.elmansi-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(18, 48, 71, 0.1) 1px, transparent 1px),
    radial-gradient(rgba(248, 140, 0, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  background-position:
    0 0,
    17px 17px;
  pointer-events: none;
  opacity: 0.58;
}

.elmansi-footer > .container {
  position: relative;
  z-index: 1;
}

.elmansi-footer-bg span {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.elmansi-footer-bg .is-1 {
  width: 280px;
  height: 280px;
  right: -120px;
  top: -110px;
  background: rgba(23, 107, 135, 0.14);
}

.elmansi-footer-bg .is-2 {
  width: 320px;
  height: 320px;
  left: -130px;
  bottom: -130px;
  background: rgba(248, 140, 0, 0.13);
}

.elmansi-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.78fr) minmax(
      280px,
      0.9fr
    );
  gap: 18px;
  align-items: stretch;
}

.elmansi-footer-card {
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 58px -48px rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(14px);
  padding: 24px;
}

.elmansi-footer-card h2 {
  position: relative;
  margin: 0 0 18px;
  padding-right: 14px;
  color: var(--elmansi-ink);
  font-size: 19px;
  font-weight: 900 !important;
}

.elmansi-footer-card h2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  width: 5px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--elmansi-gold),
    var(--elmansi-green)
  );
}

.elmansi-footer-logo {
  display: inline-flex;
  text-decoration: none;
}

.elmansi-footer-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 78px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.elmansi-footer-logo img {
  max-width: 154px;
  height: auto;
}

.elmansi-footer-brand p {
  margin: 18px 0 0;
  color: var(--elmansi-muted);
  font-size: 15px;
  line-height: 2;
}

.elmansi-footer-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.elmansi-footer-stats div {
  padding: 13px 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.65);
}

.elmansi-footer-stats strong,
.elmansi-footer-stats span {
  display: block;
}

.elmansi-footer-stats strong {
  color: var(--elmansi-blue);
  font-size: 18px;
  font-weight: 900;
  direction: ltr;
  unicode-bidi: isolate;
}

.elmansi-footer-stats span {
  margin-top: 4px;
  color: var(--elmansi-muted);
  font-size: 11px;
  font-weight: 800;
}

.elmansi-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.elmansi-footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 50%;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.elmansi-footer-social a:hover {
  color: #fff;
  background: var(--elmansi-blue);
  border-color: var(--elmansi-blue);
  transform: translateY(-2px);
}

.elmansi-footer-links {
  display: grid;
  gap: 9px;
}

.elmansi-footer-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.elmansi-footer-links a span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.elmansi-footer-links a span i {
  color: var(--elmansi-gold);
}

.elmansi-footer-links a:hover {
  color: var(--elmansi-blue);
  border-color: rgba(23, 107, 135, 0.2);
  background: #fff;
  text-decoration: none;
}

.elmansi-footer-support {
  display: grid;
  gap: 10px;
}

.elmansi-footer-support a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.66);
  text-decoration: none;
}

.elmansi-footer-support a:hover {
  color: var(--elmansi-ink);
  background: #fff;
  transform: translateY(-2px);
}

.elmansi-footer-support i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--elmansi-green),
    var(--elmansi-blue)
  );
}

.elmansi-footer-support small,
.elmansi-footer-support strong {
  display: block;
}

.elmansi-footer-support small {
  color: var(--elmansi-muted);
  font-size: 11px;
  font-weight: 900;
}

.elmansi-footer-support strong {
  margin-top: 4px;
  color: var(--elmansi-ink);
  font-size: 13px;
  font-weight: 900;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

.dl {
  direction: ltr;
  unicode-bidi: isolate;
}

.elmansi-footer-tags {
  margin-top: 18px;
}

.elmansi-footer-tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.elmansi-footer-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px dashed rgba(23, 107, 135, 0.22);
  border-radius: 999px;
  color: var(--elmansi-muted);
  background: rgba(255, 255, 255, 0.66);
  font-size: 13px !important;
  font-weight: 800;
  text-decoration: none;
}

.elmansi-footer-tags a:hover {
  color: var(--elmansi-blue);
  background: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.elmansi-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  color: var(--elmansi-muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-credit img {
  width: 20px;
  height: 20px;
}

.elmansi-support-dock {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 999;
  display: grid;
  gap: 12px;
}

.whatsapp-float,
.call-float,
.elmansi-back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float,
.call-float {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 22px 46px -28px rgba(17, 24, 39, 0.8);
  isolation: isolate;
}

.whatsapp-float::before,
.call-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: 26px;
  opacity: 0.26;
  animation: elmansiSupportPulse 1.8s infinite;
}

.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-float::before {
  background: #25d366;
}

.call-float {
  background: linear-gradient(135deg, var(--elmansi-gold), #d96a00);
}

.call-float::before {
  background: var(--elmansi-gold);
}

.whatsapp-float i,
.call-float i {
  font-size: 25px;
}

.whatsapp-float span,
.call-float span {
  position: absolute;
  right: 74px;
  min-width: 74px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 16px 32px -28px rgba(17, 24, 39, 0.8);
  opacity: 0;
  transform: translateX(-8px);
  transition: 0.2s ease;
  pointer-events: none;
}

.whatsapp-float:hover,
.call-float:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
}

.whatsapp-float:hover span,
.call-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-message {
  position: fixed;
  right: 96px;
  bottom: 98px;
  z-index: 998;
  display: none;
  align-items: center;
  gap: 10px;
  max-width: 310px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 20px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 54px -40px rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  animation: fadeInUp 0.45s ease;
}

.whatsapp-message i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #fff !important;
  background: var(--elmansi-gold);
}

.elmansi-back-top {
  position: fixed;
  left: 24px !important;
  right: auto !important;
  bottom: 24px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 50%;
  color: var(--elmansi-ink) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 18px 36px -28px rgba(17, 24, 39, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.elmansi-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.elmansi-back-top:hover {
  color: #fff !important;
  background: var(--elmansi-blue) !important;
  text-decoration: none;
}

@keyframes elmansiSupportPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.28;
  }
  70% {
    transform: scale(1.28);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 82px;
  }

  .elmansi-footer-grid {
    grid-template-columns: 1fr;
  }

  .elmansi-section {
    padding: 58px 0;
  }

  .elmansi-trust-grid,
  .elmansi-services-grid,
  .elmansi-process-grid,
  .elmansi-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .elmansi-about-grid,
  .elmansi-coverage-grid {
    grid-template-columns: 1fr;
  }

  .elmansi-about-visual img {
    height: 340px;
  }

  .elmansi-home-cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .elmansi-about-hero {
    padding: 42px 0;
  }

  .elmansi-about-hero-grid,
  .elmansi-about-story-grid,
  .elmansi-contact-hero-grid,
  .elmansi-contact-layout,
  .elmansi-contact-bottom-grid {
    grid-template-columns: 1fr;
  }

  .elmansi-about-values-grid,
  .elmansi-about-timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .elmansi-about-hero-card {
    min-height: 300px;
  }

  .elmansi-home-cta-mark {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .elmansi-home-cta-mark i {
    font-size: 34px;
  }

  .elmansi-contact-hero,
  .elmansi-contact-main,
  .elmansi-contact-bottom {
    padding: 28px 0;
  }

  .elmansi-contact-hero-box,
  .elmansi-contact-panel,
  .elmansi-contact-form-panel {
    border-radius: 26px;
  }

  .elmansi-contact-hero-box,
  .elmansi-contact-panel,
  .elmansi-contact-form-panel {
    padding: 24px;
  }

  .elmansi-contact-page .container {
    max-width: 760px;
  }

  .elmansi-topline-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 7px 0;
    gap: 10px;
  }

  .elmansi-topline,
  .elmansi-nav-shell {
    display: none;
  }

  .elmansi-topline-link {
    max-width: none;
  }

  .elmansi-brandbar-inner {
    min-height: auto;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .elmansi-brand {
    grid-column: 2;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    justify-content: flex-start;
    text-align: right;
  }

  .elmansi-brand-copy {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    gap: 4px;
  }

  .elmansi-logo-frame {
    width: 150px;
    height: 68px;
    border-radius: 22px;
  }

  .elmansi-logo-frame img {
    width: 122px;
  }

  .elmansi-header-actions {
    display: none;
  }

  #header.elmansi-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 997;
    color: #fff;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    height: auto !important;
    padding: 0;
  }

  .elmansi-brandbar {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.72),
        rgba(248, 250, 252, 0.5)
      ),
      rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(16px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(160%) !important;
    border-bottom-left-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-top: none !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    margin: 0 12px;
    pointer-events: auto;
  }

  .elmansi-logo-frame {
    background:
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.56),
        rgba(248, 250, 252, 0.26)
      ),
      rgba(255, 255, 255, 0.24);
  }

  .elmansi-logo-frame::before {
    background:
      radial-gradient(
        circle at 15% 20%,
        rgba(248, 140, 0, 0.1),
        transparent 32%
      ),
      radial-gradient(
        circle at 86% 75%,
        rgba(23, 129, 95, 0.1),
        transparent 36%
      );
  }

  .elmansi-mobile-menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 2;
  }

  .elmansi-brand-copy strong {
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #f88c00;
    background: transparent;
    font-size: clamp(14px, 3.25vw, 18px);
    text-shadow: none;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .elmansi-brand-copy strong::after {
    display: none;
  }

  @media (max-width: 767.98px) {
    .elmansi-floating {
      display: inline-flex;
      position: fixed;
      bottom: 18px;
      right: 18px;
      z-index: 1100;
      width: 56px;
      height: 56px;
      align-items: center;
      justify-content: center;
      background: var(--elmansi-gold);
      color: #fff;
      border-radius: 50%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
      text-decoration: none;
    }

    /* If a mobile footer panel exists, make it fixed to bottom */
    .elmansi-mobile-panel-footer {
      display: flex !important;
      position: fixed !important;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1090;
      justify-content: space-around;
      padding: 10px 12px;
      background: rgba(255, 255, 255, 0.98);
      border-top: 1px solid rgba(17, 24, 39, 0.06);
    }
  }

  /* Make the main area stretch to fill the viewport below the header.
   We use a CSS variable for header height as a sensible fallback. */
  html,
  body {
    height: 100%;
  }

  :root {
    --elmansi-header-height: 72px;
    --elmansi-header-flow-gap: 18px;
  }

  @media (max-width: 767.98px) {
    :root {
      --elmansi-header-height: 64px;
      --elmansi-header-flow-gap: 16px;
    }
  }

  #main {
    min-height: 100vh;
    padding-top: 0;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    background-color: #f8fafc;
    background-image:
      var(--elmansi-floor-pattern), var(--elmansi-floor-gradients);
    background-size:
      34px 34px,
      34px 34px,
      auto,
      auto,
      auto;
    background-position:
      0 0,
      17px 17px,
      0 0,
      0 0,
      0 0;
    isolation: isolate;
  }

  #main > * {
    position: relative;
    z-index: 1;
  }

  /* #main > section:first-child {
    padding-top: calc(
      var(--elmansi-header-height, 86px) + var(--elmansi-header-flow-gap, 12px)
    ) !important;
  } */

  /* #main > .elmansi-contact-hero:first-child {
    padding-top: calc(
      var(--elmansi-header-height, 86px) +
        var(--elmansi-header-flow-gap, 12px) + 28px
    ) !important;
  } */

  body {
    background: var(--elmansi-floor-gradients);
    position: relative;
  }

  body::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: var(--elmansi-floor-pattern);
    background-size: 34px 34px;
    background-position:
      0 0,
      17px 17px;
    mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.32) 0,
      rgba(0, 0, 0, 0.56) var(--elmansi-header-height, 86px),
      #000 calc(var(--elmansi-header-height, 86px) + 44px)
    );
    -webkit-mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.32) 0,
      rgba(0, 0, 0, 0.56) var(--elmansi-header-height, 86px),
      #000 calc(var(--elmansi-header-height, 86px) + 44px)
    );
    pointer-events: none;
    opacity: 0.58;
    z-index: 0;
  }

  .elmansi-footer,
  .elmansi-footer > .container {
    position: relative;
    z-index: 1;
  }

  #header.elmansi-header,
  .elmansi-header--overlay {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .elmansi-brand-copy small {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    color: #2199d4;
    background: transparent;
    font-size: clamp(10px, 2.7vw, 12px);
    font-weight: 900;
    line-height: 1.35;
    text-shadow: none;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .elmansi-support-dock {
    display: none;
  }

  .elmansi-back-top {
    display: none;
  }

  .elmansi-mobile-drawer,
  .elmansi-mobile-overlay {
    display: block;
  }

  .elmansi-bottom-nav {
    display: flex;
  }

  .elmansi-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
    direction: rtl;
    border-radius: 24px;
  }

  .elmansi-nav-title {
    display: none;
  }

  .elmansi-nav .navbar-collapse {
    flex-direction: column;
    align-items: stretch;
    flex: 0 0 100%;
    direction: rtl;
    padding-top: 12px;
  }

  .elmansi-nav .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }

  .elmansi-nav .navbar-collapse.collapse.show {
    display: flex !important;
  }

  .elmansi-nav .navbar-nav {
    grid-column: auto;
    justify-self: stretch;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .elmansi-nav .nav-link {
    justify-content: flex-start;
    border-radius: 14px;
  }

  .elmansi-nav-cta {
    width: 100%;
    margin-top: 10px;
  }

  .elmansi-hero-wrap {
    padding: 28px 0 42px;
    margin-top: 0;
    overflow: hidden;
  }

  .elmansi-hero-section {
    overflow: hidden;
  }

  .elmansi-hero-orb {
    filter: blur(0.5px);
  }

  .elmansi-hero-orb.is-1 {
    width: 210px;
    height: 210px;
    top: -74px;
    right: -82px;
  }

  .elmansi-hero-orb.is-2 {
    width: 190px;
    height: 190px;
    left: -82px;
    bottom: -74px;
  }

  .elmansi-hero-orb.is-3 {
    width: 118px;
    height: 118px;
    top: 120px;
    left: 54%;
  }

  .elmansi-hero-slide {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 22px 74px;
  }

  .elmansi-hero-content {
    align-items: stretch;
    order: 2;
    margin-top: 0;
    padding: 24px 22px 22px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96),
        rgba(248, 250, 252, 0.88)
      ),
      rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 58px -44px rgba(17, 24, 39, 0.76);
    backdrop-filter: blur(12px);
  }

  .elmansi-hero-media {
    order: 1;
    display: grid;
    justify-items: center;
    gap: 12px;
  }

  .elmansi-hero-content h1,
  .elmansi-hero-content h2 {
    font-size: 28px;
  }

  .elmansi-hero-content p {
    font-size: 15px;
  }

  .elmansi-hero-tag {
    align-self: flex-start;
  }

  .elmansi-hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .elmansi-hero-features span {
    min-height: 38px;
    justify-content: center;
    text-align: center;
  }

  .elmansi-hero-facts {
    width: min(440px, 100%);
    margin-top: 0;
    position: relative;
    z-index: 2;
  }

  .elmansi-hero-cells {
    left: -28px;
    top: 120px;
    opacity: 0.42;
  }
}

@media (max-width: 575.98px) {
  .elmansi-section {
    padding: 46px 0;
  }

  .elmansi-section-head {
    margin-bottom: 22px;
  }

  .elmansi-section-head h2,
  .elmansi-about-card h2,
  .elmansi-coverage-panel h2 {
    font-size: 24px;
  }

  .elmansi-home-cta h2 {
    font-size: 21px;
    line-height: 1.6;
  }

  .elmansi-trust-grid,
  .elmansi-services-grid,
  .elmansi-process-grid,
  .elmansi-faq-grid,
  .elmansi-mini-stats {
    grid-template-columns: 1fr;
  }

  .elmansi-trust-card,
  .elmansi-service-box,
  .elmansi-step-card,
  .elmansi-faq-card,
  .elmansi-about-card,
  .elmansi-coverage-panel {
    border-radius: 20px;
  }

  .elmansi-about-card,
  .elmansi-coverage-panel {
    padding: 22px;
  }

  .elmansi-about-hero-content,
  .elmansi-about-story-card,
  .elmansi-about-timeline-box {
    padding: 22px;
  }

  .elmansi-about-hero-content h1 {
    font-size: 27px;
  }

  .elmansi-about-hero-content p {
    font-size: 15px;
  }

  .elmansi-about-hero-actions,
  .elmansi-about-hero-actions a {
    width: 100%;
  }

  .elmansi-about-stats,
  .elmansi-about-values-grid,
  .elmansi-about-timeline-grid,
  .elmansi-contact-cards,
  .elmansi-contact-form {
    grid-template-columns: 1fr;
  }

  .elmansi-contact-copy h1 {
    font-size: 27px;
  }

  .elmansi-contact-copy p {
    font-size: 15px;
  }

  .elmansi-contact-page .container {
    padding-inline: 18px;
  }

  .elmansi-contact-hero-box,
  .elmansi-contact-panel,
  .elmansi-contact-form-panel {
    border-radius: 22px;
  }

  .elmansi-contact-hero-box::before {
    inset: 10px;
    border-radius: 16px;
  }

  .elmansi-contact-actions,
  .elmansi-contact-actions a,
  .elmansi-contact-form-actions,
  .elmansi-contact-form-actions button,
  .elmansi-contact-form-actions small {
    width: 100%;
  }

  .elmansi-contact-form label.is-full,
  .elmansi-contact-form-actions {
    grid-column: auto;
  }

  .elmansi-contact-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .elmansi-contact-availability {
    min-height: auto;
    padding: 22px;
  }

  .elmansi-about-values-grid article {
    min-height: auto;
  }

  .elmansi-about-visual {
    padding: 10px;
    border-radius: 20px;
  }

  .elmansi-about-visual img {
    height: 260px;
    border-radius: 16px;
  }

  .elmansi-step-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .elmansi-service-box {
    min-height: auto;
    padding: 22px 20px;
  }

  .elmansi-service-head {
    min-height: 52px;
    padding: 9px 14px 9px 10px;
    margin-bottom: 22px;
  }

  .elmansi-service-icon {
    left: -8px;
    bottom: -20px;
    font-size: 100px;
  }

  .elmansi-service-box::after {
    top: 82px;
    right: 30px;
    left: 30px;
  }

  .elmansi-step-head {
    min-height: 60px;
    padding: 8px 9px;
    margin-bottom: 22px;
  }

  .elmansi-step-card::before {
    left: -8px;
    bottom: -22px;
    width: auto;
    height: auto;
    font-size: 112px;
  }

  .elmansi-step-card::after {
    top: 92px;
    right: 30px;
    left: 30px;
  }

  .elmansi-cta-actions,
  .elmansi-cta-actions a {
    width: 100%;
  }

  .elmansi-footer {
    padding-top: 42px;
  }

  .elmansi-footer-card {
    padding: 18px;
    border-radius: 20px;
  }

  .elmansi-footer-stats {
    grid-template-columns: 1fr;
  }

  .elmansi-footer-bottom {
    flex-direction: column;
  }

  .elmansi-support-dock {
    right: 14px;
    bottom: 14px;
    gap: 9px;
  }

  .whatsapp-float,
  .call-float {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .whatsapp-float span,
  .call-float span {
    display: none;
  }

  .whatsapp-message {
    display: none !important; /* التأكيد على الإخفاء التام في الشاشات الصغيرة */
  }

  .elmansi-back-top {
    left: 14px !important;
    bottom: 14px;
  }

  .elmansi-topline-link:first-child {
    display: none;
  }

  .elmansi-social {
    margin-right: 0;
  }

  .elmansi-brand {
    align-items: center;
    gap: 10px;
  }

  .elmansi-logo-frame {
    width: 118px;
    height: 56px;
    border-radius: 20px;
  }

  .elmansi-logo-frame::before {
    border-radius: 15px;
  }

  .elmansi-logo-frame img {
    width: 96px;
  }

  .elmansi-brand-copy strong {
    font-size: clamp(12px, 3.55vw, 15px);
  }

  .elmansi-brand-copy small {
    display: block;
    max-width: 100%;
    padding-inline: 0;
    font-size: clamp(8px, 2.45vw, 10px);
  }

  .elmansi-contact-chip {
    width: 100%;
    justify-content: center;
  }

  .elmansi-nav-shell {
    padding-bottom: 8px;
  }

  .elmansi-hero-wrap {
    padding-top: 14px;
  }

  .elmansi-hero-swiper {
    border-radius: 20px;
  }

  .elmansi-hero-slide {
    padding: 14px 12px 66px;
    gap: 14px;
  }

  .elmansi-hero-content {
    margin-top: 0;
    padding: 20px 16px 18px;
    border-radius: 20px;
    gap: 12px;
  }

  .elmansi-hero-content h1,
  .elmansi-hero-content h2 {
    font-size: 24px;
  }

  .elmansi-hero-content p {
    font-size: 14px;
    line-height: 1.9;
  }

  .elmansi-hero-actions a {
    width: 100%;
  }

  .elmansi-hero-image {
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    padding: 10px;
  }

  .elmansi-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 10px;
    margin-top: 0;
  }

  .elmansi-hero-facts div {
    padding: 10px 8px;
    border-radius: 14px;
  }

  .elmansi-hero-features {
    grid-template-columns: 1fr;
  }

  .elmansi-hero-features span {
    min-height: 36px;
  }

  .elmansi-swiper-btn {
    width: 38px;
    height: 38px;
  }

  .elmansi-hero-swiper .swiper-pagination {
    bottom: 14px !important;
    gap: 6px;
    padding: 8px 11px;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .swiper-pagination-bullet-active {
    width: 34px;
  }

  .elmansi-hero-orb.is-1 {
    width: 180px;
    height: 180px;
    top: -58px;
    right: -70px;
  }

  .elmansi-hero-orb.is-2 {
    width: 168px;
    height: 168px;
    left: -70px;
    bottom: -58px;
  }
}

.elmansi-about-hero .elmansi-contact-hero-box {
  position: relative;
  overflow: hidden;
}

.elmansi-about-hero .elmansi-contact-hero-box::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.elmansi-about-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.55;
}

.elmansi-about-shape.is-one {
  width: 180px;
  height: 180px;
  right: 36%;
  top: -70px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.22),
    transparent 68%
  );
}

.elmansi-about-shape.is-two {
  width: 230px;
  height: 230px;
  left: -80px;
  bottom: -90px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.18),
    transparent 65%
  );
}

.elmansi-about-hero .elmansi-contact-copy h1 {
  max-width: 780px;
  line-height: 1.35;
}

.elmansi-about-hero .elmansi-contact-copy p {
  max-width: 720px;
  line-height: 2;
}

.elmansi-about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.elmansi-about-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 118, 110, 0.12);
  color: #0f766e;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.elmansi-about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  max-width: 620px;
}

.elmansi-about-mini-stats span {
  padding: 15px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.elmansi-about-mini-stats strong {
  display: block;
  color: #0f766e;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.elmansi-about-mini-stats small {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.elmansi-about-summary {
  position: relative;
  isolation: isolate;
  padding: 34px 30px;
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.94),
    rgba(240, 253, 250, 0.78)
  );
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.elmansi-about-summary::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -70px;
  top: -70px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(23, 107, 135, 0.12),
    transparent 70%
  );
}

.elmansi-services-route i {
  flex: 0 0 34px;
}

/* Tailwind migration compatibility layer for legacy utility markup. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    "Cairo",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container,
.container-fluid {
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

.container {
  max-width: 1140px;
}

@media (min-width: 992px) {
  #main .container,
  .elmansi-footer .container {
    max-width: 100%;
    padding-inline: var(--elmansi-container-gutter);
  }
}

@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
}

@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -15px;
}

.row > [class*="col"],
.row > .col {
  width: 100%;
  min-height: 1px;
  padding-inline: 15px;
}

.col {
  flex: 1 0 0%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.flex-column {
  flex-direction: column !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: var(--elmansi-blue) !important;
}

.text-secondary,
.text-muted {
  color: var(--elmansi-muted) !important;
}

.text-danger {
  color: #dc2626 !important;
}

.bg-white {
  background: #fff !important;
}

.bg-light {
  background: var(--elmansi-paper) !important;
}

.bg-primary {
  background: var(--elmansi-blue) !important;
}

.bg-secondary {
  background: var(--elmansi-navy) !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.py-0 {
  padding-block: 0 !important;
}

.py-2 {
  padding-block: 0.5rem !important;
}

.py-3 {
  padding-block: 1rem !important;
}

.py-4 {
  padding-block: 1.5rem !important;
}

.py-5 {
  padding-block: 3rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.px-0 {
  padding-inline: 0 !important;
}

.px-3 {
  padding-inline: 1rem !important;
}

.px-4 {
  padding-inline: 1.5rem !important;
}

.px-5 {
  padding-inline: 3rem !important;
}

.mx-1 {
  margin-inline: 0.25rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.h-100 {
  height: 100% !important;
}

.position-relative {
  position: relative !important;
}

.border {
  border: 1px solid var(--elmansi-line) !important;
}

.border-0 {
  border: 0 !important;
}

.border-secondary {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.55rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: #fff !important;
  border-color: var(--elmansi-blue);
  background: linear-gradient(135deg, var(--elmansi-blue), var(--elmansi-navy));
}

.btn-outline-primary {
  color: var(--elmansi-blue) !important;
  border-color: rgba(23, 107, 135, 0.28);
  background: #fff;
}

.btn-outline-primary:hover {
  color: #fff !important;
  background: var(--elmansi-blue);
}

.btn:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.form-control {
  width: 100%;
  min-height: 48px;
  display: block;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  color: var(--elmansi-ink);
  background: #fff;
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: rgba(23, 107, 135, 0.45);
  box-shadow: 0 0 0 4px rgba(23, 107, 135, 0.1);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.control-group.has-error .form-control,
.form-control:invalid[aria-invalid="true"] {
  border-color: rgba(220, 38, 38, 0.55);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.help-block {
  min-height: 20px;
  margin: 6px 0 0;
  color: #dc2626;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.elmansi-form-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.elmansi-form-alert.is-success {
  color: #166534;
  border-color: rgba(22, 101, 52, 0.16);
  background: #dcfce7;
}

.elmansi-form-alert.is-error {
  color: #991b1b;
  border-color: rgba(153, 27, 27, 0.16);
  background: #fee2e2;
}

.elmansi-form-alert-close {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.55);
  font-size: 22px;
  line-height: 1;
}

.card {
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--elmansi-shadow);
}

.collapse:not(.show) {
  display: none;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-brand,
.nav-link {
  text-decoration: none;
}

/* InlineRP-style shell: topbar, header panel, footer */
.elmansi-guide-topbar {
  position: relative;
  z-index: 110;
  width: min(
    var(--elmansi-page-width),
    calc(100% - var(--elmansi-page-gutter))
  );
  margin: 16px auto 0;
  isolation: isolate;
  transform: translateZ(0);
}

.elmansi-guide-topbar-panel {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22.4px;
  color: #475569;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(245, 249, 255, 0.88)
  );
  box-shadow: 0 14px 34px -26px rgba(15, 76, 129, 0.18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
}

.elmansi-topbar-item,
.elmansi-guide-topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.elmansi-topbar-item:hover {
  color: var(--elmansi-blue);
  text-decoration: none;
}

.elmansi-topbar-item i,
.elmansi-guide-topbar-badge i {
  color: var(--elmansi-blue);
}

.elmansi-guide-topbar-badge {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--elmansi-blue) !important;
  background: rgba(15, 76, 129, 0.08);
  font-weight: 1000;
}

.elmansi-topbar-divider {
  display: inline-flex;
  width: 1px;
  height: 16px;
  background: #e2e8f0;
}

.elmansi-topbar-short {
  display: none;
}

.elmansi-topbar-full {
  display: inline;
}

#header.elmansi-header {
  position: sticky;
  top: 12px;
  z-index: 997;
  width: min(
    var(--elmansi-page-width),
    calc(100% - var(--elmansi-page-gutter))
  );
  margin: 16px auto 0;
  padding-inline: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: var(--elmansi-ink);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  isolation: isolate;
  transform: translateZ(0);
}

.elmansi-header-panel {
  position: relative;
  overflow: visible;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px -18px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease;
}

.elmansi-header-panel:hover {
  box-shadow: 0 18px 42px -20px rgba(15, 23, 42, 0.14);
}

.elmansi-header-line {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(23, 107, 135, 0.24),
    transparent
  );
}

.elmansi-header-glow {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(24px);
}

.elmansi-header-glow.is-right {
  right: -40px;
  top: 0;
  background: rgba(23, 107, 135, 0.05);
}

.elmansi-header-glow.is-left {
  left: -40px;
  bottom: 0;
  background: rgba(23, 129, 95, 0.05);
}

.elmansi-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

#header .elmansi-brand {
  flex: 0 0 auto;
}

#header .elmansi-logo-frame {
  width: 56px;
  height: 56px;
  border-radius: 22px;
}

#header .elmansi-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

#header .elmansi-brand-copy {
  gap: 4px;
}

#header .elmansi-brand-copy strong {
  font-size: 14px;
}

#header .elmansi-brand-copy small {
  font-size: 11px;
}

.elmansi-main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.elmansi-main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.elmansi-main-nav a:hover,
.elmansi-main-nav a.active {
  color: var(--elmansi-blue);
  background: #fff;
  box-shadow: 0 8px 18px -14px rgba(15, 23, 42, 0.24);
}

.elmansi-header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.elmansi-header-icon,
.elmansi-header-support,
#header .elmansi-mobile-menu-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  color: #64748b;
  background: #fff;
  box-shadow: 0 10px 20px -16px rgba(15, 23, 42, 0.18);
  text-decoration: none;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.elmansi-header-icon:hover,
#header .elmansi-mobile-menu-toggle:hover {
  color: var(--elmansi-blue);
  border-color: rgba(23, 107, 135, 0.35);
  transform: translateY(-1px);
}

.elmansi-header-support {
  color: #fff;
  border-color: #0f172a;
  background: #0f172a;
}

.elmansi-header-support:hover {
  color: #fff;
  border-color: var(--elmansi-blue);
  background: var(--elmansi-blue);
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  #header .elmansi-mobile-menu-toggle {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .elmansi-guide-topbar {
    margin-top: 10px;
    /* padding-inline: 12px; */
  }

  .elmansi-guide-topbar-panel {
    gap: 9px;
    border-radius: 20px;
  }

  #header.elmansi-header {
    position: sticky !important;
    top: 10px;
    right: auto;
    left: auto;
    margin-top: 10px;
    /* padding-inline: 12px; */
  }

  .elmansi-header-panel {
    border-radius: 27px;
  }

  .elmansi-main-nav,
  .elmansi-header-support {
    display: none;
  }

  #header .elmansi-brand {
    min-width: 0;
  }

  #header .elmansi-brand-copy strong {
    max-width: 52vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 575.98px) {
  .elmansi-guide-topbar-panel {
    justify-content: center;
    font-size: 11px;
  }

  .elmansi-topbar-short {
    display: inline;
  }

  .elmansi-topbar-full {
    display: none;
  }

  .elmansi-topbar-divider {
    height: 14px;
  }

  #header .elmansi-brand-copy small {
    display: none;
  }
}

.elmansi-footer {
  width: min(
    var(--elmansi-page-width),
    calc(100% - var(--elmansi-page-gutter))
  );
  margin: 48px auto 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
  color: var(--elmansi-ink);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(238, 246, 255, 0.86)
  );
  box-shadow: 0 28px 60px -40px rgba(15, 76, 129, 0.28);
  backdrop-filter: blur(18px);
}

.elmansi-footer::before {
  background-image: linear-gradient(
    90deg,
    transparent,
    rgba(23, 129, 95, 0.45),
    transparent
  );
  background-size: auto;
  background-position: 0 0;
  height: 1px;
  opacity: 1;
}

.elmansi-footer-bg {
  display: none;
}

.elmansi-footer > .container {
  max-width: 100%;
  padding: 32px 32px 0;
}

.elmansi-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
}

.elmansi-footer-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.elmansi-footer-card h2 {
  color: var(--elmansi-blue);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.elmansi-footer-card h2::before {
  display: none;
}

.elmansi-footer-brand p {
  max-width: 680px;
  color: #475569;
  font-size: 15px;
}

.elmansi-footer-links a,
.elmansi-footer-support a {
  border-color: rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  color: #334155;
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  box-shadow: none;
}

.elmansi-footer-links a:hover,
.elmansi-footer-support a:hover {
  border-color: rgba(23, 107, 135, 0.35);
  color: var(--elmansi-blue);
  background: rgba(233, 243, 255, 0.85);
}

.elmansi-footer-tags {
  display: none;
}

.elmansi-footer-bottom {
  justify-content: center;
  margin: 28px -32px 0;
  padding: 16px 32px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 0;
  color: #64748b;
  background: transparent;
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .elmansi-footer {
    width: calc(100% - 24px);
    margin-top: 32px;
  }

  .elmansi-footer > .container {
    padding: 26px 18px 0;
  }

  .elmansi-footer-grid {
    grid-template-columns: 1fr;
  }

  .elmansi-footer-bottom {
    margin-inline: -18px;
    padding-inline: 18px;
  }
}

.elmansi-search-page {
  direction: rtl;
  background:
    radial-gradient(circle at 90% 8%, rgba(15, 76, 129, 0.1), transparent 34%),
    radial-gradient(
      circle at 12% 30%,
      rgba(245, 158, 11, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f6f8fb 100%);
  color: #0f172a;
}

.elmansi-search-hero {
  position: relative;
  overflow: hidden;
  padding: 85px 0 65px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.elmansi-search-hero::before,
.elmansi-search-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
}

.elmansi-search-hero::before {
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  background: rgba(15, 76, 129, 0.12);
}

.elmansi-search-hero::after {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -100px;
  background: rgba(245, 158, 11, 0.14);
}

.elmansi-section-head {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: auto;
  text-align: center;
}

.elmansi-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #0f4c81;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 76, 129, 0.12);
}

.elmansi-section-head h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -1px;
  color: #0f172a;
}

.elmansi-section-head h1 span {
  color: #0f4c81;
}

.elmansi-section-head p {
  max-width: 680px;
  margin: 18px auto 32px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.9;
}

.elmansi-search-form-box {
  display: flex;
  gap: 12px;
  max-width: 760px;
  margin: auto;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}

.elmansi-search-form-box input {
  flex: 1;
  min-height: 58px;
  border: 0;
  outline: 0;
  background: #f8fafc;
  border-radius: 20px;
  padding: 0 22px;
  color: #0f172a;
  font-weight: 700;
}

.elmansi-search-form-box input::placeholder {
  color: #94a3b8;
}

.elmansi-search-form-box button {
  min-width: 150px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f4c81, #123b63);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(15, 76, 129, 0.25);
  transition: 0.25s ease;
}

.elmansi-search-form-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(15, 76, 129, 0.32);
}

.elmansi-search-status {
  margin-bottom: 22px;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.elmansi-search-status h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
}

.elmansi-search-status p {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}

.elmansi-search-status span {
  color: #0f4c81;
  font-weight: 900;
}

.elmansi-results-list {
  display: grid;
  gap: 18px;
}

.elmansi-result-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  transition: 0.25s ease;
}

.elmansi-result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 76, 129, 0.22);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.11);
}

.elmansi-result-card .card-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 129, 0.12),
    rgba(245, 158, 11, 0.12)
  );
  color: #0f4c81;
  font-size: 26px;
}

.elmansi-result-card .card-body {
  flex: 1;
}

.elmansi-result-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.elmansi-result-card h3 a {
  color: #0f172a;
  text-decoration: none;
}

.elmansi-result-card h3 a:hover {
  color: #0f4c81;
}

.elmansi-result-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.9;
  font-size: 15px;
}

.elmansi-result-card mark {
  background: #fef3c7;
  color: #92400e;
  border-radius: 8px;
  padding: 1px 6px;
}

.elmansi-result-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
}

.elmansi-result-card .card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0f4c81;
  font-weight: 900;
  text-decoration: none;
}

.elmansi-result-card .badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.elmansi-empty-state {
  padding: 56px 24px;
  text-align: center;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.elmansi-empty-state i {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 26px;
  background: rgba(15, 76, 129, 0.1);
  color: #0f4c81;
  font-size: 36px;
}

.elmansi-empty-state.is-orange i {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.elmansi-empty-state h3 {
  margin: 0 0 8px;
  font-weight: 900;
}

.elmansi-empty-state p {
  margin: 0;
  color: #64748b;
}

.elmansi-search-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}

.sidebar-block {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.sidebar-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
}

.sidebar-block h3 i {
  color: #0f4c81;
}

.sidebar-block ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sidebar-block li {
  position: relative;
  padding-right: 22px;
  color: #64748b;
  line-height: 1.8;
  font-weight: 700;
}

.sidebar-block li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f59e0b;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f8fafc;
  color: #0f4c81;
  border: 1px solid rgba(15, 76, 129, 0.12);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  transition: 0.25s ease;
}

.tag-cloud a:hover {
  background: #0f4c81;
  color: #fff;
  transform: translateY(-2px);
}

.elmansi-search-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f4c81, #123b63);
  color: #fff;
  box-shadow: 0 24px 55px rgba(15, 76, 129, 0.22);
}

.elmansi-search-cta i {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 28px;
}

.elmansi-search-cta h4 {
  margin: 0 0 6px;
  font-weight: 900;
}

.elmansi-search-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

@media (max-width: 991px) {
  .elmansi-search-sidebar {
    position: static;
    margin-top: 28px;
  }
}

@media (max-width: 575px) {
  .elmansi-search-hero {
    padding: 55px 0 45px;
  }

  .elmansi-search-form-box {
    flex-direction: column;
    border-radius: 24px;
  }

  .elmansi-search-form-box button {
    min-height: 54px;
    width: 100%;
  }

  .elmansi-result-card {
    flex-direction: column;
    padding: 18px;
  }

  .elmansi-result-card .card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .elmansi-search-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Search page refreshed layout */
.elmansi-search-page {
  min-height: 100vh;
  background: var(--elmansi-floor-pattern), var(--elmansi-floor-gradients);
  background-size:
    34px 34px,
    auto;
}

.elmansi-search-page .elmansi-search-hero {
  padding: 42px 0 96px;
  border-bottom: 0;
  background: transparent;
}

.elmansi-search-page .elmansi-search-hero::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -130px;
  background: rgba(23, 129, 95, 0.14);
}

.elmansi-search-page .elmansi-search-hero::after {
  width: 340px;
  height: 340px;
  left: -130px;
  bottom: -150px;
  background: rgba(248, 140, 0, 0.15);
}

.search-header-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(248, 140, 0, 0.13), transparent 28%),
    radial-gradient(
      circle at 90% 14%,
      rgba(23, 129, 95, 0.12),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(241, 247, 255, 0.84)
    );
  box-shadow: 0 28px 70px -46px rgba(15, 76, 129, 0.42);
  backdrop-filter: blur(16px);
}

@media (min-width: 992px) {
  .search-header-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: center;
  }
}

.search-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(23, 107, 135, 0.14);
  border-radius: 999px;
  color: var(--elmansi-blue);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.search-back-btn:hover {
  color: #fff;
  background: var(--elmansi-blue);
  border-color: var(--elmansi-blue);
  transform: translateY(-2px);
}

.search-hero-title {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--elmansi-ink);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 1000;
  line-height: 1.25;
}

.search-hero-desc {
  max-width: 650px;
  margin: 16px 0 0;
  color: #526171;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.search-stats-container {
  display: grid;
  gap: 14px;
}

.search-stat-box {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px -36px rgba(15, 76, 129, 0.42);
}

.search-stat-box::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  left: -28px;
  bottom: -30px;
  border-radius: 999px;
  background: rgba(23, 129, 95, 0.08);
}

.stat-label {
  margin: 0;
  color: var(--elmansi-green);
  font-size: 13px;
  font-weight: 1000;
}

.stat-label.is-gold {
  color: var(--elmansi-gold);
}

.stat-value {
  margin: 8px 0 0;
  color: var(--elmansi-ink);
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.6;
}

.elmansi-search-page .elmansi-search-form-box {
  max-width: 650px;
  margin: 26px 0 0;
  padding: 8px;
  border-color: rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 58px -42px rgba(15, 76, 129, 0.55);
}

.elmansi-search-page .elmansi-search-form-box input {
  min-height: 56px;
  border-radius: 17px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(23, 107, 135, 0.08);
}

.elmansi-search-page .elmansi-search-form-box button {
  min-width: 134px;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    var(--elmansi-blue),
    var(--elmansi-green)
  );
}

.results-main-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.91),
    rgba(248, 250, 252, 0.86)
  );
  box-shadow: 0 28px 70px -44px rgba(15, 76, 129, 0.45);
  backdrop-filter: blur(14px);
}

.elmansi-search-page .elmansi-search-status {
  padding: 0 0 20px;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.elmansi-search-page .elmansi-search-status h2 {
  color: var(--elmansi-ink);
  font-size: clamp(24px, 3vw, 32px);
}

.elmansi-search-page .elmansi-result-card,
.elmansi-search-page .sidebar-block,
.elmansi-search-page .elmansi-empty-state {
  border-color: rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px -34px rgba(17, 24, 39, 0.58);
}

.elmansi-search-page .elmansi-result-card:hover {
  border-color: rgba(23, 129, 95, 0.24);
  box-shadow: 0 28px 62px -38px rgba(23, 129, 95, 0.5);
}

.elmansi-search-page .elmansi-result-card .card-icon {
  background:
    linear-gradient(135deg, rgba(23, 107, 135, 0.13), rgba(23, 129, 95, 0.13)),
    #f8fafc;
  color: var(--elmansi-blue);
}

.elmansi-search-page .elmansi-result-card .card-footer a,
.elmansi-search-page .sidebar-block h3 i,
.elmansi-search-page .tag-cloud a {
  color: var(--elmansi-blue);
}

.elmansi-search-page .tag-cloud a:hover {
  color: #fff;
  border-color: var(--elmansi-blue);
  background: var(--elmansi-blue);
}

.elmansi-search-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.elmansi-search-quick a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #123047;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px -22px rgba(15, 23, 42, 0.55);
}

.elmansi-search-quick a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--elmansi-blue), var(--elmansi-green));
  transform: translateY(-2px);
}

.elmansi-search-quick i {
  color: var(--elmansi-orange);
  font-size: 17px;
}

.elmansi-search-quick a:hover i {
  color: #fff;
}

.elmansi-search-starter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.elmansi-search-starter-grid a {
  min-height: 118px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  color: var(--elmansi-ink);
  background: #fff;
  text-align: right;
  text-decoration: none;
  box-shadow: 0 18px 42px -34px rgba(17, 24, 39, 0.55);
}

.elmansi-search-starter-grid a:hover {
  border-color: rgba(23, 129, 95, 0.24);
  transform: translateY(-2px);
}

.elmansi-search-starter-grid i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--elmansi-green), var(--elmansi-blue));
  font-size: 22px;
}

.elmansi-search-starter-grid strong,
.elmansi-search-starter-grid small {
  display: block;
}

.elmansi-search-starter-grid strong {
  font-size: 15px;
  font-weight: 1000;
}

.elmansi-search-starter-grid small {
  margin-top: 6px;
  color: var(--elmansi-muted);
  font-size: 12px;
  line-height: 1.7;
}

.elmansi-search-city-links {
  display: grid;
  gap: 9px;
}

.elmansi-search-city-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(23, 107, 135, 0.09);
  border-radius: 14px;
  color: var(--elmansi-ink);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.elmansi-search-city-links a:hover {
  color: var(--elmansi-blue);
  background: #fff;
  border-color: rgba(23, 107, 135, 0.22);
}

.elmansi-search-city-links span {
  font-weight: 1000;
}

.elmansi-search-city-links small {
  color: var(--elmansi-muted);
  font-size: 11px;
  font-weight: 800;
  text-align: left;
}

.elmansi-search-page .elmansi-search-cta {
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, var(--elmansi-green), var(--elmansi-blue));
}

/* InlineRP-matched hero rotator and stronger floor treatment */
:root {
  --elmansi-floor-gradients:
    radial-gradient(
      circle at 10% 14%,
      rgba(199, 227, 255, 0.78) 0,
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 7%,
      rgba(202, 247, 238, 0.82) 0,
      transparent 20%
    ),
    radial-gradient(
      circle at 70% 82%,
      rgba(255, 221, 174, 0.36) 0,
      transparent 25%
    ),
    linear-gradient(180deg, #f8fbff 0%, #f1f6fc 48%, #edf4fb 100%);
  --elmansi-floor-pattern:
    linear-gradient(rgba(15, 76, 129, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 129, 0.038) 1px, transparent 1px);
}

body {
  background: var(--elmansi-floor-gradients);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--elmansi-floor-pattern) !important;
  background-size: 34px 34px !important;
  background-position: 0 0 !important;
  opacity: 0.76 !important;
}

@media (min-width: 992px) {
  #main {
    background: transparent;
  }
}

.elmansi-hero-section {
  background: transparent;
}

.elmansi-hero-wrap {
  padding: 20px 0;
  overflow: visible;
}

.elmansi-hero-dots,
.elmansi-hero-cells,
.elmansi-hero-wrap > .elmansi-hero-orb {
  display: none;
}

.elmansi-hero-swiper {
  overflow: hidden;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.elmansi-hero-slide {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 32px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, var(--hero-soft), transparent 30%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(241, 247, 255, 0.88) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 28px 64px -42px var(--hero-glow);
}

.elmansi-hero-slide::before {
  top: -64px;
  right: -48px;
  width: 192px;
  height: 192px;
  background: var(--hero-soft);
  filter: blur(18px);
  opacity: 0.75;
}

.elmansi-hero-slide::after {
  top: 30%;
  left: 44%;
  bottom: auto;
  width: 96px;
  height: 96px;
  background: color-mix(in srgb, var(--hero-accent) 24%, white);
  filter: blur(18px);
  opacity: 0.75;
}

.elmansi-hero-content {
  gap: 0;
}

.elmansi-hero-tag {
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid color-mix(in srgb, var(--hero-accent) 12%, white);
  border-radius: 999px;
  color: var(--hero-accent);
  background: color-mix(in srgb, var(--hero-accent) 10%, white);
  font-size: 12.5px;
  font-weight: 900;
}

.elmansi-hero-content h1,
.elmansi-hero-content h2 {
  margin-top: 16px;
  color: #0f172a;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1.25;
  font-weight: 1000 !important;
}

.elmansi-hero-content p {
  max-width: 672px;
  margin-top: 16px;
  color: #526171;
  font-size: 16px;
  line-height: 2;
}

.elmansi-hero-actions {
  margin-top: 24px;
  gap: 13px;
}

.elmansi-hero-primary,
.elmansi-hero-secondary {
  min-height: 50px;
  padding: 14px 19px;
  border-radius: 16px;
  font-size: 15px;
}

.elmansi-hero-primary {
  background: #0f172a;
  box-shadow: 0 18px 34px -24px rgba(15, 23, 42, 0.38);
}

.elmansi-hero-primary:hover {
  background: #111f37;
}

.elmansi-hero-secondary {
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #334155;
  background: rgba(255, 255, 255, 0.7);
}

.elmansi-hero-secondary:hover {
  border-color: color-mix(in srgb, var(--hero-accent) 24%, white);
  color: var(--hero-accent);
}

.elmansi-hero-features {
  margin-top: 22px;
  gap: 10px;
}

.elmansi-hero-features span {
  padding: 9px 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  color: #475569;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
}

.elmansi-hero-media {
  position: relative;
  display: block;
  padding: 16px;
}

.elmansi-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.36)
    ),
    repeating-linear-gradient(
      -45deg,
      color-mix(in srgb, var(--hero-accent) 22%, white) 0 10px,
      rgba(255, 255, 255, 0.9) 10px 20px
    );
  box-shadow: 0 24px 50px -36px rgba(15, 76, 129, 0.34);
  transform: rotate(-2.2deg);
}

.elmansi-hero-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(320px, 31vw, 430px);
  min-height: 0;
  aspect-ratio: auto;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 26px 54px -36px rgba(15, 76, 129, 0.35);
}

.elmansi-hero-image::before {
  display: none;
}

.elmansi-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transition: transform 700ms ease;
}

.elmansi-hero-slide:hover .elmansi-hero-image img {
  transform: scale(1.03);
}

.elmansi-hero-facts {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  width: min(330px, calc(100% - 68px));
}

.elmansi-hero-facts div {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
}

.elmansi-swiper-btn {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
}

.elmansi-swiper-btn:hover {
  color: #fff;
  background: rgba(15, 23, 42, 0.22);
}

.elmansi-hero-prev {
  right: 16px;
}

.elmansi-hero-next {
  left: 16px;
}

.elmansi-hero-swiper .swiper-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto !important;
  left: 50% !important;
  right: auto !important;
  bottom: 32px !important;
  transform: translateX(-50%);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
}

.elmansi-hero-swiper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  opacity: 1;
  transition: 220ms ease;
}

.elmansi-hero-swiper .swiper-pagination-bullet-active {
  width: 32px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98),
    rgba(226, 240, 255, 0.92)
  );
  box-shadow: 0 10px 18px -12px rgba(15, 76, 129, 0.42);
}

@media (max-width: 991.98px) {
  .elmansi-hero-wrap {
    padding: 16px 0 26px;
  }

  .elmansi-hero-swiper .swiper-pagination {
    bottom: 18px !important;
  }

  .elmansi-hero-slide {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 16px 16px 62px;
    gap: 16px;
  }

  .elmansi-hero-media {
    order: -1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
  }

  .elmansi-hero-media::before {
    border-radius: 32px;
    transform: rotate(-1deg);
  }

  .elmansi-hero-image {
    height: clamp(250px, 48vw, 340px);
    border-radius: 30px;
  }

  .elmansi-hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .elmansi-hero-content h1,
  .elmansi-hero-content h2 {
    margin-top: 12px;
  }

  .elmansi-hero-content p {
    margin-top: 12px;
    line-height: 1.85;
  }

  .elmansi-hero-actions {
    margin-top: 18px;
  }

  .elmansi-hero-features {
    margin-top: 16px;
  }

  .elmansi-swiper-btn {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .elmansi-hero-slide {
    border-radius: 24px;
    padding: 12px 12px 58px;
    gap: 12px;
  }

  .elmansi-hero-media {
    padding: 8px;
  }

  .elmansi-hero-image {
    height: clamp(210px, 57vw, 250px);
    min-height: 0;
    border-radius: 26px;
  }

  .elmansi-hero-image img {
    min-height: 0;
  }

  .elmansi-hero-content h1,
  .elmansi-hero-content h2 {
    font-size: clamp(24px, 7vw, 31px);
    line-height: 1.35;
  }

  .elmansi-hero-content p {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .elmansi-hero-primary,
  .elmansi-hero-secondary {
    width: 100%;
    min-height: 46px;
  }

  .elmansi-hero-swiper .swiper-pagination {
    max-width: calc(100% - 24px);
    padding: 6px 9px;
    gap: 6px;
  }

  .elmansi-hero-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }

  .elmansi-hero-swiper .swiper-pagination-bullet-active {
    width: 24px;
  }

  .elmansi-hero-facts {
    width: 100%;
    margin-top: 0;
    gap: 8px;
  }

  .elmansi-hero-facts div {
    padding: 10px 8px;
    border-radius: 14px;
  }
}

@media (max-width: 991.98px) {
  .elmansi-search-page .elmansi-search-hero {
    padding: 44px 0 54px;
  }

  .results-main-wrapper {
    margin-top: -22px;
    border-radius: 24px;
  }
}

@media (max-width: 575.98px) {
  .search-header-layout {
    border-radius: 22px;
  }

  .search-hero-title {
    font-size: 30px;
  }

  .search-hero-desc {
    font-size: 15px;
  }

  .elmansi-search-page .elmansi-search-form-box {
    flex-direction: column;
  }
}

/* Services and contact page alignment with the main site shell */
.elmansi-about-page,
.elmansi-services-page,
.elmansi-contact-page {
  background: var(--elmansi-floor-pattern), var(--elmansi-floor-gradients);
  background-size:
    34px 34px,
    auto;
}

.elmansi-about-page > section,
.elmansi-services-page > section,
.elmansi-contact-page > section {
  background: transparent;
}

@media (min-width: 992px) {
  .elmansi-about-page .container,
  .elmansi-services-page .container,
  .elmansi-contact-page .container {
    max-width: 100%;
    padding-inline: var(--elmansi-container-gutter);
  }
}

.elmansi-about-page .elmansi-contact-hero,
.elmansi-services-page .elmansi-contact-hero,
.elmansi-contact-page .elmansi-contact-hero {
  padding-top: 42px;
  padding-bottom: 34px;
}

.elmansi-about-page .elmansi-contact-hero-box,
.elmansi-services-page .elmansi-contact-hero-box,
.elmansi-contact-page .elmansi-contact-hero-box,
.elmansi-contact-page .elmansi-contact-panel,
.elmansi-contact-page .elmansi-contact-form-panel {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 0%, rgba(248, 140, 0, 0.11), transparent 28%),
    radial-gradient(
      circle at 90% 14%,
      rgba(23, 129, 95, 0.11),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(241, 247, 255, 0.84)
    );
  box-shadow: 0 28px 70px -46px rgba(15, 76, 129, 0.42);
}

.elmansi-about-page .elmansi-contact-hero-box,
.elmansi-services-page .elmansi-contact-hero-box,
.elmansi-contact-page .elmansi-contact-hero-box {
  border-radius: 30px;
  padding: clamp(24px, 4vw, 44px);
}

.elmansi-about-page .elmansi-contact-hero-grid,
.elmansi-services-page .elmansi-contact-hero-grid,
.elmansi-contact-page .elmansi-contact-hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.elmansi-about-page .elmansi-contact-pill,
.elmansi-services-page .elmansi-contact-pill,
.elmansi-contact-page .elmansi-contact-pill,
.elmansi-contact-page .elmansi-contact-label {
  color: var(--elmansi-blue);
  background: rgba(15, 76, 129, 0.08);
}

.elmansi-contact-page .elmansi-contact-label {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
}

.elmansi-contact-page .elmansi-contact-label.is-accent {
  color: var(--elmansi-green);
  background: rgba(23, 129, 95, 0.1);
}

.elmansi-about-page .elmansi-contact-copy h1,
.elmansi-services-page .elmansi-contact-copy h1,
.elmansi-contact-page .elmansi-contact-copy h1 {
  max-width: 860px;
  font-size: clamp(31px, 3.6vw, 31px);
}

.elmansi-about-page .elmansi-contact-copy p,
.elmansi-services-page .elmansi-contact-copy p,
.elmansi-contact-page .elmansi-contact-copy p {
  max-width: 780px;
  color: #526171;
}

.elmansi-about-page .elmansi-about-mini-stats,
.elmansi-contact-page .elmansi-contact-cards,
.elmansi-services-page .elmansi-about-mini-stats {
  align-self: stretch;
}

.elmansi-about-page .elmansi-about-story-card,
.elmansi-about-page .elmansi-about-stats div,
.elmansi-about-page .elmansi-about-values-grid article,
.elmansi-about-page .elmansi-about-timeline-box,
.elmansi-about-page .elmansi-about-timeline-grid div,
.elmansi-about-page .elmansi-service-box,
.elmansi-about-page .elmansi-faq-card,
.elmansi-about-page .elmansi-coverage-panel,
.elmansi-about-page .elmansi-trust-card,
.elmansi-about-page .elmansi-about-summary,
.elmansi-contact-page .elmansi-contact-card,
.elmansi-contact-page .elmansi-contact-panel,
.elmansi-contact-page .elmansi-contact-form-panel,
.elmansi-services-page .elmansi-service-box,
.elmansi-services-page .elmansi-step-card,
.elmansi-services-page .elmansi-faq-card,
.elmansi-services-page .elmansi-about-values-grid article,
.elmansi-services-page .elmansi-coverage-panel,
.elmansi-services-page .elmansi-trust-card {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px -34px rgba(17, 24, 39, 0.58);
}

.elmansi-about-page .elmansi-service-box:hover,
.elmansi-about-page .elmansi-about-values-grid article:hover,
.elmansi-services-page .elmansi-service-box:hover,
.elmansi-services-page .elmansi-step-card:hover,
.elmansi-contact-page .elmansi-contact-card:hover {
  border-color: rgba(23, 129, 95, 0.24);
  box-shadow: 0 28px 62px -38px rgba(23, 129, 95, 0.5);
}

.elmansi-about-page .elmansi-about-story,
.elmansi-about-page .elmansi-about-values,
.elmansi-about-page .elmansi-services-modern,
.elmansi-about-page .elmansi-about-timeline,
.elmansi-about-page .elmansi-coverage,
.elmansi-about-page .elmansi-faq,
.elmansi-services-page .elmansi-services-modern,
.elmansi-services-page .elmansi-process,
.elmansi-services-page .elmansi-about-values,
.elmansi-services-page .elmansi-coverage,
.elmansi-services-page .elmansi-faq,
.elmansi-contact-page .elmansi-contact-main,
.elmansi-contact-page .elmansi-contact-bottom {
  padding-block: 34px;
}

.elmansi-about-page .elmansi-services-grid,
.elmansi-services-page .elmansi-services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.elmansi-about-page .elmansi-section-head,
.elmansi-services-page .elmansi-section-head {
  max-width: 860px;
  margin-inline: 0;
  margin-bottom: 24px;
}

.elmansi-about-page .elmansi-section-head h2,
.elmansi-services-page .elmansi-section-head h2 {
  color: var(--elmansi-ink);
}

.elmansi-about-page .elmansi-section-head p,
.elmansi-services-page .elmansi-section-head p {
  color: #526171;
}

.elmansi-contact-page .elmansi-contact-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.elmansi-contact-page .elmansi-contact-bottom-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
}

.elmansi-contact-page .elmansi-contact-form input,
.elmansi-contact-page .elmansi-contact-form select,
.elmansi-contact-page .elmansi-contact-form textarea {
  border-color: rgba(23, 107, 135, 0.13);
  background: rgba(255, 255, 255, 0.96);
}

.elmansi-contact-page .elmansi-contact-tags span,
.elmansi-about-page .elmansi-chip-list span,
.elmansi-about-page .elmansi-about-points span,
.elmansi-services-page .elmansi-chip-list span,
.elmansi-services-page .elmansi-about-points span {
  border: 1px solid rgba(23, 107, 135, 0.1);
  color: #475569;
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1199.98px) {
  .elmansi-about-page .elmansi-services-grid,
  .elmansi-about-page .elmansi-about-values-grid,
  .elmansi-about-page .elmansi-about-timeline-grid,
  .elmansi-services-page .elmansi-services-grid,
  .elmansi-services-page .elmansi-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .elmansi-about-page .elmansi-contact-hero,
  .elmansi-services-page .elmansi-contact-hero,
  .elmansi-contact-page .elmansi-contact-hero {
    padding-top: 28px;
  }

  .elmansi-about-page .elmansi-contact-hero-grid,
  .elmansi-about-page .elmansi-about-story-grid,
  .elmansi-services-page .elmansi-contact-hero-grid,
  .elmansi-contact-page .elmansi-contact-hero-grid,
  .elmansi-contact-page .elmansi-contact-layout,
  .elmansi-contact-page .elmansi-contact-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .elmansi-about-page .elmansi-contact-hero-box,
  .elmansi-services-page .elmansi-contact-hero-box,
  .elmansi-contact-page .elmansi-contact-hero-box,
  .elmansi-contact-page .elmansi-contact-panel,
  .elmansi-contact-page .elmansi-contact-form-panel {
    border-radius: 22px;
  }

  .elmansi-about-page .elmansi-services-grid,
  .elmansi-about-page .elmansi-about-values-grid,
  .elmansi-about-page .elmansi-about-timeline-grid,
  .elmansi-services-page .elmansi-services-grid,
  .elmansi-services-page .elmansi-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .elmansi-search-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .elmansi-search-quick a {
    justify-content: center;
    text-align: center;
    border-radius: 14px;
  }

  .elmansi-search-starter-grid {
    grid-template-columns: 1fr;
  }

  .elmansi-search-city-links a {
    align-items: flex-start;
    flex-direction: column;
  }

  .elmansi-search-city-links small {
    text-align: right;
  }
}

@media (max-width: 380px) {
  .elmansi-search-quick {
    grid-template-columns: 1fr;
  }
}

/* Final page shell width: keep every page main area aligned. */
#main {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

@media (min-width: 992px) {
  #main {
    width: min(
      var(--elmansi-page-width),
      calc(100% - var(--elmansi-page-gutter))
    );
    margin-top: 24px;
  }

  #main .container {
    max-width: 100%;
    padding-inline: var(--elmansi-container-gutter);
  }
}

@media (max-width: 991.98px) {
  #main {
    width: 100%;
    margin-top: 0;
  }
}

/* Mobile stability fixes: keep the drawer on the compositor and compact pages. */
@media (max-width: 991.98px) {
  html.elmansi-drawer-lock,
  body.elmansi-menu-open {
    overflow: hidden;
    overscroll-behavior: contain;
  }

  .elmansi-mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1190;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateZ(0);
    transition:
      opacity 180ms ease,
      visibility 0s linear 180ms;
    will-change: opacity;
  }

  .elmansi-mobile-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .elmansi-mobile-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1200;
    visibility: hidden;
    pointer-events: none;
    contain: layout paint;
    transition: visibility 0s linear 220ms;
  }

  .elmansi-mobile-drawer.is-open {
    visibility: visible;
    pointer-events: none;
    transition-delay: 0s;
  }

  .elmansi-mobile-panel {
    width: min(430px, calc(100vw - 18px));
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    transform: translate3d(105%, 0, 0);
    opacity: 1;
    backface-visibility: hidden;
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
  }

  .elmansi-mobile-drawer.is-open .elmansi-mobile-panel {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .elmansi-mobile-panel-footer {
    display: block !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: auto !important;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom)) !important;
    background: transparent !important;
  }

  .elmansi-section,
  .elmansi-about-page .elmansi-about-story,
  .elmansi-about-page .elmansi-about-values,
  .elmansi-about-page .elmansi-services-modern,
  .elmansi-about-page .elmansi-about-timeline,
  .elmansi-about-page .elmansi-coverage,
  .elmansi-about-page .elmansi-faq,
  .elmansi-services-page .elmansi-services-modern,
  .elmansi-services-page .elmansi-process,
  .elmansi-services-page .elmansi-about-values,
  .elmansi-services-page .elmansi-coverage,
  .elmansi-services-page .elmansi-faq,
  .elmansi-contact-page .elmansi-contact-main,
  .elmansi-contact-page .elmansi-contact-bottom {
    padding-block: 28px;
  }

  .elmansi-about-page .elmansi-contact-hero,
  .elmansi-services-page .elmansi-contact-hero,
  .elmansi-contact-page .elmansi-contact-hero,
  .elmansi-search-page .elmansi-search-hero {
    padding-block: 24px 34px;
  }

  .elmansi-section-head {
    margin-bottom: 18px;
  }

  .elmansi-footer {
    margin-top: 24px;
    margin-bottom: 86px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --elmansi-container-gutter: 14px;
  }

  .elmansi-section,
  .elmansi-about-page .elmansi-about-story,
  .elmansi-about-page .elmansi-about-values,
  .elmansi-about-page .elmansi-services-modern,
  .elmansi-about-page .elmansi-about-timeline,
  .elmansi-about-page .elmansi-coverage,
  .elmansi-about-page .elmansi-faq,
  .elmansi-services-page .elmansi-services-modern,
  .elmansi-services-page .elmansi-process,
  .elmansi-services-page .elmansi-about-values,
  .elmansi-services-page .elmansi-coverage,
  .elmansi-services-page .elmansi-faq,
  .elmansi-contact-page .elmansi-contact-main,
  .elmansi-contact-page .elmansi-contact-bottom {
    padding-block: 22px;
  }

  .elmansi-hero-wrap {
    padding: 12px 0 18px;
  }

  .elmansi-hero-slide {
    padding: 10px 10px 50px;
  }

  .elmansi-about-page .elmansi-contact-hero-box,
  .elmansi-services-page .elmansi-contact-hero-box,
  .elmansi-contact-page .elmansi-contact-hero-box,
  .elmansi-contact-page .elmansi-contact-panel,
  .elmansi-contact-page .elmansi-contact-form-panel {
    padding: 18px;
  }
}

/* Home mobile rhythm: remove oversized gaps caused by desktop card heights. */
@media (max-width: 991.98px) {
  .elmansi-page-home #main {
    overflow-x: hidden;
  }

  .elmansi-page-home .elmansi-hero-wrap {
    padding-block: 10px 14px;
  }

  .elmansi-page-home .elmansi-hero-swiper,
  .elmansi-page-home .elmansi-hero-swiper .swiper-wrapper,
  .elmansi-page-home .elmansi-hero-swiper .swiper-slide {
    height: auto !important;
  }

  .elmansi-page-home .elmansi-hero-slide {
    min-height: 0;
  }

  .elmansi-page-home .elmansi-trust-strip {
    padding-block: 16px;
  }

  .elmansi-page-home .elmansi-section {
    padding-block: 24px;
  }

  .elmansi-page-home .elmansi-home-cta {
    padding-block: 24px;
  }

  .elmansi-page-home .elmansi-section-head {
    margin-bottom: 14px;
  }

  .elmansi-page-home .elmansi-trust-grid,
  .elmansi-page-home .elmansi-about-grid,
  .elmansi-page-home .elmansi-services-grid,
  .elmansi-page-home .elmansi-process-grid,
  .elmansi-page-home .elmansi-coverage-grid,
  .elmansi-page-home .elmansi-faq-grid {
    gap: 12px;
  }

  .elmansi-page-home .elmansi-trust-card,
  .elmansi-page-home .elmansi-service-box,
  .elmansi-page-home .elmansi-step-card,
  .elmansi-page-home .elmansi-faq-card {
    min-height: 0;
  }

  .elmansi-page-home .elmansi-about-card,
  .elmansi-page-home .elmansi-service-box,
  .elmansi-page-home .elmansi-step-card,
  .elmansi-page-home .elmansi-coverage-panel,
  .elmansi-page-home .elmansi-home-cta-box {
    padding: 18px;
  }

  .elmansi-page-home .elmansi-about-list {
    gap: 8px;
    margin-top: 14px;
  }

  .elmansi-page-home .elmansi-service-head,
  .elmansi-page-home .elmansi-step-head {
    min-height: 0;
    margin-bottom: 12px;
  }

  .elmansi-page-home .elmansi-service-box::after,
  .elmansi-page-home .elmansi-step-card::after {
    display: none;
  }

  .elmansi-page-home .elmansi-chip-list {
    gap: 7px;
    margin-top: 14px;
  }

  .elmansi-page-home .elmansi-faq-card h3 {
    min-height: 0;
    padding: 12px;
  }

  .elmansi-page-home .elmansi-faq-card p {
    margin-top: 8px;
    padding: 12px;
    line-height: 1.75;
  }
}

@media (max-width: 575.98px) {
  .elmansi-page-home .elmansi-hero-wrap {
    padding-block: 8px 12px;
  }

  .elmansi-page-home .elmansi-hero-slide {
    padding: 10px 10px 42px;
    gap: 8px;
  }

  .elmansi-page-home .elmansi-hero-media {
    gap: 8px;
    padding: 6px;
  }

  .elmansi-page-home .elmansi-hero-image {
    height: clamp(175px, 50vw, 215px);
    border-radius: 22px;
  }

  .elmansi-page-home .elmansi-hero-content h1,
  .elmansi-page-home .elmansi-hero-content h2 {
    margin-top: 8px;
    font-size: clamp(21px, 6.2vw, 27px);
  }

  .elmansi-page-home .elmansi-hero-content p,
  .elmansi-page-home .elmansi-hero-actions,
  .elmansi-page-home .elmansi-hero-features {
    margin-top: 10px;
  }

  .elmansi-page-home .elmansi-section {
    padding-block: 18px;
  }

  .elmansi-page-home .elmansi-trust-strip,
  .elmansi-page-home .elmansi-home-cta {
    padding-block: 18px;
  }

  .elmansi-page-home .elmansi-trust-card {
    min-height: 0;
    padding: 14px;
  }

  .elmansi-page-home .elmansi-about-visual img {
    height: clamp(190px, 54vw, 230px);
  }

  .elmansi-page-home .elmansi-mini-stats {
    gap: 8px;
    margin-top: 8px;
  }

  .elmansi-page-home .elmansi-mini-stats div {
    padding: 10px;
  }

  .elmansi-page-home .elmansi-home-cta-box {
    gap: 14px;
  }
}

/* Home about block: compact, readable mobile layout. */
@media (max-width: 767.98px) {
  .elmansi-page-home .elmansi-about-modern {
    padding-block: 16px;
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 247, 0.92));
  }

  .elmansi-page-home .elmansi-about-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .elmansi-page-home .elmansi-about-card,
  .elmansi-page-home .elmansi-about-visual {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 14px 34px -30px rgba(17, 24, 39, 0.55);
  }

  .elmansi-page-home .elmansi-about-card {
    padding: 16px;
  }

  .elmansi-page-home .elmansi-about-card .elmansi-kicker {
    margin-bottom: 8px;
  }

  .elmansi-page-home .elmansi-about-card h2 {
    font-size: clamp(21px, 6vw, 25px);
    line-height: 1.38;
  }

  .elmansi-page-home .elmansi-about-card p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.75;
  }

  .elmansi-page-home .elmansi-about-list {
    gap: 7px;
    margin-top: 12px;
  }

  .elmansi-page-home .elmansi-about-list li {
    gap: 8px;
    font-size: 13.5px;
    line-height: 1.65;
  }

  .elmansi-page-home .elmansi-about-list i {
    margin-top: 4px;
    flex: 0 0 auto;
  }

  .elmansi-page-home .elmansi-about-visual {
    padding: 8px;
  }

  .elmansi-page-home .elmansi-about-visual img {
    height: clamp(165px, 48vw, 210px);
    border-radius: 14px;
  }

  .elmansi-page-home .elmansi-mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
  }

  .elmansi-page-home .elmansi-mini-stats div {
    min-width: 0;
    padding: 9px 6px;
    border-radius: 13px;
  }

  .elmansi-page-home .elmansi-mini-stats span {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .elmansi-page-home .elmansi-mini-stats strong {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 360px) {
  .elmansi-page-home .elmansi-mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .elmansi-page-home .elmansi-home-cta {
    padding-block: 20px;
  }

  .elmansi-page-home .elmansi-home-cta::after {
    width: 86px;
    height: 86px;
    right: auto;
    left: 18px;
    bottom: 18px;
    border-radius: 24px;
  }

  .elmansi-page-home .elmansi-home-cta-box {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .elmansi-page-home .elmansi-home-cta-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .elmansi-page-home .elmansi-home-cta-mark i {
    font-size: 27px;
  }

  .elmansi-page-home .elmansi-home-cta-content {
    align-self: center;
  }

  .elmansi-page-home .elmansi-home-cta span {
    margin-bottom: 6px;
    padding: 4px 9px;
    font-size: 11px;
  }

  .elmansi-page-home .elmansi-home-cta h2 {
    font-size: clamp(18px, 5.4vw, 22px);
    line-height: 1.42;
  }

  .elmansi-page-home .elmansi-cta-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .elmansi-page-home .elmansi-cta-actions a {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .elmansi-page-home .elmansi-home-keywords {
    padding: 18px 0 10px;
  }

  .elmansi-page-home .elmansi-home-keywords-box {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .elmansi-page-home .elmansi-home-keywords-head h2 {
    font-size: clamp(19px, 5.4vw, 22px);
  }

  .elmansi-page-home .elmansi-home-keywords-list {
    gap: 7px;
  }

  .elmansi-page-home .elmansi-home-keywords-list a {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .elmansi-page-home .elmansi-cta-actions {
    grid-template-columns: 1fr;
  }
}

/* AOS can mis-measure mobile layouts during refresh; never let it hide content. */
@media (max-width: 767.98px) {
  body [data-aos],
  body [data-aos][class*="aos-"] {
    opacity: 1 !important;
    transform: none !important;
    transition-property: none !important;
    visibility: visible !important;
  }
}

/* Refined mobile bottom navigation. */
.elmansi-bottom-nav:not(.elmansi-bottom-nav--refined) {
  display: none !important;
}

@media (max-width: 991.98px) {
  .elmansi-bottom-nav--refined {
    width: min(520px, calc(100% - 18px));
    right: 9px;
    left: 9px;
    bottom: calc(9px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    padding: 7px;
    border: 1px solid rgba(23, 107, 135, 0.12);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 247, 0.9)),
      rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 48px -30px rgba(18, 48, 71, 0.55);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .elmansi-bottom-nav--refined a,
  .elmansi-bottom-nav--refined button {
    height: 52px;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    padding: 4px 2px;
    border: 0;
    border-radius: 16px;
    color: #64748b;
    background: transparent;
    font-size: 10.5px;
    font-weight: 1000;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
    transition:
      color 0.2s ease,
      background-color 0.2s ease,
      transform 0.2s ease;
  }

  .elmansi-bottom-nav--refined i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #176b87;
    background: rgba(23, 107, 135, 0.08);
    font-size: 18px;
    line-height: 1;
  }

  .elmansi-bottom-nav--refined .is-active {
    color: var(--elmansi-blue);
    background: rgba(23, 107, 135, 0.08);
  }

  .elmansi-bottom-nav--refined .is-active i {
    color: #fff;
    background: linear-gradient(135deg, var(--elmansi-blue), var(--elmansi-green));
  }

  .elmansi-bottom-nav--refined .is-primary {
    top: 0;
    height: 56px;
    color: #fff;
    background:
      radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.22), transparent 36%),
      linear-gradient(135deg, #17815f, #176b87);
    box-shadow: 0 16px 28px -22px rgba(23, 129, 95, 0.9);
    transform: translateY(-4px);
  }

  .elmansi-bottom-nav--refined .is-primary i {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
  }

  .elmansi-bottom-nav--refined a:hover,
  .elmansi-bottom-nav--refined button:hover {
    color: var(--elmansi-blue);
    background: rgba(23, 107, 135, 0.08);
    text-decoration: none;
  }

  .elmansi-bottom-nav--refined .is-primary:hover {
    color: #fff;
    background:
      radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
      linear-gradient(135deg, #15916a, #145f7b);
  }
}

@media (max-width: 360px) {
  .elmansi-bottom-nav--refined a,
  .elmansi-bottom-nav--refined button {
    font-size: 9.5px;
  }
}

/* Mobile header brand: same visual language as the drawer brand, without overflow. */
@media (max-width: 991.98px) {
  #header.elmansi-header {
    width: min(var(--elmansi-page-width), calc(100% - 18px));
  }

  #header .elmansi-header-panel {
    padding: 8px;
    border-radius: 22px;
  }

  #header .elmansi-header-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  #header .elmansi-brand {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    text-align: right;
  }

  #header .elmansi-logo-frame {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 20px;
    border: 1px solid rgba(17, 24, 39, 0.09);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 34px -28px rgba(17, 24, 39, 0.7);
  }

  #header .elmansi-logo-frame img {
    width: 44px;
    height: auto;
    padding: 0;
  }

  #header .elmansi-brand-copy {
    min-width: 0;
    max-width: 100%;
    display: block;
    overflow: hidden;
  }

  #header .elmansi-brand-copy strong,
  #header .elmansi-brand-copy small {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: none;
  }

  #header .elmansi-brand-copy strong {
    color: #f88c00;
    font-size: clamp(12px, 3.25vw, 15px);
    font-weight: 900;
    line-height: 1.35;
  }

  #header .elmansi-brand-copy small {
    margin-top: 2px;
    color: #2199d4;
    font-size: clamp(10px, 2.85vw, 12px);
    font-weight: 900;
    line-height: 1.35;
  }

  #header .elmansi-header-tools {
    min-width: 0;
    gap: 6px;
  }

  #header .elmansi-header-icon,
  #header .elmansi-mobile-menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
}

@media (max-width: 380px) {
  #header .elmansi-header-panel {
    padding: 7px;
  }

  #header .elmansi-header-content {
    gap: 6px;
  }

  #header .elmansi-logo-frame {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 17px;
  }

  #header .elmansi-logo-frame img {
    width: 39px;
  }

  #header .elmansi-brand {
    gap: 8px;
  }

  #header .elmansi-brand-copy strong {
    font-size: clamp(11px, 3.35vw, 13px);
  }

  #header .elmansi-brand-copy small {
    font-size: 10px;
  }

  #header .elmansi-header-icon {
    display: none;
  }
}

@media (max-width: 320px) {
  #header .elmansi-logo-frame {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  #header .elmansi-logo-frame img {
    width: 36px;
  }

  #header .elmansi-brand-copy strong {
    font-size: 10.5px;
  }

  #header .elmansi-brand-copy small {
    font-size: 9.5px;
  }

  #header .elmansi-mobile-menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

/* Balance pass: keep mobile header and bottom nav visually even. */
@media (max-width: 991.98px) {
  .elmansi-bottom-nav--refined {
    align-items: center;
    gap: 4px;
    padding: 6px;
  }

  .elmansi-bottom-nav--refined a,
  .elmansi-bottom-nav--refined button,
  .elmansi-bottom-nav--refined .is-primary {
    top: auto;
    height: 50px;
    transform: none;
  }

  .elmansi-bottom-nav--refined i,
  .elmansi-bottom-nav--refined .is-primary i {
    width: 25px;
    height: 25px;
    border-radius: 10px;
    font-size: 17px;
  }

  .elmansi-bottom-nav--refined .is-primary {
    box-shadow: 0 12px 24px -20px rgba(23, 129, 95, 0.85);
  }

  .elmansi-bottom-nav--refined span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 575.98px) {
  #header .elmansi-header-icon {
    display: none;
  }

  #header .elmansi-header-tools {
    gap: 0;
  }

  #header .elmansi-header-content {
    grid-template-columns: minmax(0, 1fr) 42px;
  }
}

@media (max-width: 360px) {
  .elmansi-bottom-nav--refined {
    width: calc(100% - 12px);
    right: 6px;
    left: 6px;
    gap: 3px;
    padding: 5px;
    border-radius: 18px;
  }

  .elmansi-bottom-nav--refined a,
  .elmansi-bottom-nav--refined button,
  .elmansi-bottom-nav--refined .is-primary {
    height: 48px;
    border-radius: 13px;
  }

  .elmansi-bottom-nav--refined i,
  .elmansi-bottom-nav--refined .is-primary i {
    width: 23px;
    height: 23px;
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .elmansi-bottom-nav.elmansi-bottom-nav--refined {
    bottom: 10px !important;
  }
}

/* Mobile header requested order: menu right, brand center, search left. */
@media (max-width: 991.98px) {
  #header .elmansi-header-content {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    justify-items: center;
    gap: 8px;
  }

  #header .elmansi-brand {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    max-width: 100%;
    justify-self: center;
    justify-content: center;
    text-align: right;
  }

  #header .elmansi-brand-copy {
    max-width: min(48vw, 230px);
  }

  #header .elmansi-header-tools {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    pointer-events: none;
  }

  #header .elmansi-mobile-menu-toggle {
    grid-column: 1;
    justify-self: start;
    pointer-events: auto;
  }

  #header .elmansi-header-icon {
    grid-column: 3;
    display: inline-flex;
    justify-self: end;
    pointer-events: auto;
  }
}

@media (max-width: 575.98px) {
  #header .elmansi-header-content {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 6px;
  }

  #header .elmansi-header-tools {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  #header .elmansi-header-icon {
    display: inline-flex;
  }

  #header .elmansi-brand {
    gap: 7px;
  }

  #header .elmansi-brand-copy {
    max-width: min(46vw, 185px);
  }

  #header .elmansi-logo-frame {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 16px;
  }

  #header .elmansi-logo-frame img {
    width: 37px;
  }

  #header .elmansi-header-icon,
  #header .elmansi-mobile-menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

@media (max-width: 360px) {
  #header .elmansi-brand-copy {
    max-width: min(43vw, 145px);
  }

  #header .elmansi-brand-copy strong {
    font-size: 10.25px;
  }

  #header .elmansi-brand-copy small {
    font-size: 9px;
  }
}

/* Final mobile hero rotator layout: image-first, filled, balanced. */
@media (max-width: 991.98px) {
  .elmansi-page-home .elmansi-hero-wrap {
    padding: 10px 0 18px;
  }

  .elmansi-page-home .elmansi-hero-swiper {
    border-radius: 24px;
    overflow: hidden;
  }

  .elmansi-page-home .elmansi-hero-slide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 12px 12px 52px;
    border-radius: 24px;
  }

  .elmansi-page-home .elmansi-hero-media {
    order: -1;
    display: grid;
    gap: 8px;
    padding: 0;
  }

  .elmansi-page-home .elmansi-hero-media::before {
    display: none;
  }

  .elmansi-page-home .elmansi-hero-image {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    background: #eef5f7;
    box-shadow: 0 18px 42px -32px rgba(15, 76, 129, 0.42);
  }

  .elmansi-page-home .elmansi-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .elmansi-page-home .elmansi-hero-facts {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
  }

  .elmansi-page-home .elmansi-hero-facts div {
    min-height: 54px;
    display: grid;
    align-content: center;
    padding: 9px 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.82);
  }

  .elmansi-page-home .elmansi-hero-content {
    padding: 0 2px;
  }

  .elmansi-page-home .elmansi-hero-tag {
    max-width: 100%;
    padding: 7px 10px;
    font-size: 11px;
    line-height: 1.35;
  }

  .elmansi-page-home .elmansi-hero-content h1,
  .elmansi-page-home .elmansi-hero-content h2 {
    margin-top: 9px;
    font-size: clamp(22px, 5.4vw, 31px);
    line-height: 1.36;
  }

  .elmansi-page-home .elmansi-hero-content p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.75;
  }

  .elmansi-page-home .elmansi-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .elmansi-page-home .elmansi-hero-actions a {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .elmansi-page-home .elmansi-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
  }

  .elmansi-page-home .elmansi-hero-features span {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .elmansi-page-home .elmansi-hero-swiper .swiper-pagination {
    bottom: 14px !important;
  }
}

/* About page refresh: stronger SEO block with calmer visual hierarchy. */
.elmansi-about-page .elmansi-contact-hero-box {
  background:
    radial-gradient(circle at 8% 10%, rgba(248, 140, 0, 0.13), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(23, 129, 95, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 248, 249, 0.9));
}

.elmansi-about-page .elmansi-contact-copy h1 {
  color: #102f46;
}

.elmansi-about-page .elmansi-about-summary {
  border-color: rgba(23, 107, 135, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 250, 246, 0.9));
}

.elmansi-about-summary {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 14px;
  text-align: right;
}

.elmansi-about-summary-media {
  position: relative;
  min-height: 285px;
  display: grid;
  place-items: center;
  padding: 58px 18px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(23, 129, 95, 0.2), transparent 48%),
    linear-gradient(145deg, rgba(236, 253, 245, 0.96), rgba(255, 255, 255, 0.78));
  overflow: hidden;
}

.elmansi-about-badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  inset-inline-start: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 129, 95, 0.18);
  border-radius: 999px;
  color: #0f766e;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 1000;
}

.elmansi-about-badge i {
  font-size: 18px;
}

.elmansi-about-summary-visual {
  position: relative;
  display: block;
  width: min(310px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(23, 107, 135, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 48px -34px rgba(15, 23, 42, 0.6);
}

.elmansi-about-summary-visual::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(23, 107, 135, 0.18);
  border-radius: 36px;
  pointer-events: none;
}

.elmansi-about-summary-visual::after {
  content: "";
  position: absolute;
  inset-inline: 18%;
  bottom: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.1);
  filter: blur(12px);
}

.elmansi-about-summary-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
}

.elmansi-about-summary-body {
  position: relative;
  z-index: 2;
  margin-top: -20px;
  padding: 24px 20px 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px -34px rgba(17, 24, 39, 0.58);
}

.elmansi-about-summary-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.elmansi-about-summary-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #17815f, #176b87);
  box-shadow: 0 14px 26px rgba(23, 129, 95, 0.22);
}

.elmansi-about-summary-icon i {
  font-size: 23px;
}

.elmansi-about-summary-label {
  display: block;
  color: #17815f;
  font-size: 13px;
  font-weight: 1000;
}

.elmansi-about-summary h2 {
  margin: 14px 0 0;
  color: var(--elmansi-ink);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 1000;
  line-height: 1.45;
}

.elmansi-about-summary p {
  margin: 12px 0 0;
  color: #526171;
  font-size: 14.5px;
  line-height: 1.95;
}

.elmansi-about-summary .elmansi-about-route {
  margin-top: 18px;
  border: 1px solid rgba(23, 107, 135, 0.1);
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.9), rgba(239, 248, 249, 0.9));
}

.elmansi-about-summary .elmansi-about-route span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff;
}

.elmansi-about-summary .elmansi-about-route i {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 999px;
  color: #fff;
  background: #176b87;
  font-size: 20px;
}

.elmansi-about-card-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.elmansi-about-card-footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid rgba(23, 107, 135, 0.1);
  border-radius: 15px;
  color: #475569;
  background: rgba(248, 250, 252, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.elmansi-about-card-footer i {
  color: #17815f;
  font-size: 18px;
}

.elmansi-about-photo-blocks {
  padding-block: 34px;
}

.elmansi-about-photo-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(23, 107, 135, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 12%, rgba(248, 140, 0, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 249, 0.9));
  box-shadow: 0 18px 44px -34px rgba(17, 24, 39, 0.58);
  overflow: hidden;
  direction: rtl;
}

.elmansi-about-photo-intro::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 22px;
  bottom: 22px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #17815f, #f88c00);
}

.elmansi-about-photo-intro-copy {
  position: relative;
  text-align: right;
}

.elmansi-about-photo-intro-copy h2 {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--elmansi-ink);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 1000;
  line-height: 1.45;
}

.elmansi-about-photo-intro-copy p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #526171;
  font-size: 16px;
  line-height: 2;
}

.elmansi-about-photo-intro-list {
  position: relative;
  display: grid;
  gap: 10px;
}

.elmansi-about-photo-intro-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 107, 135, 0.1);
  border-radius: 16px;
  color: #164e63;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 1000;
}

.elmansi-about-photo-intro-list i {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #17815f, #176b87);
  font-size: 18px;
}

.elmansi-about-photo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  direction: rtl;
}

.elmansi-about-photo-grid::before {
  content: "";
  position: absolute;
  top: 125px;
  inset-inline: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(23, 129, 95, 0.22), transparent);
  pointer-events: none;
}

.elmansi-about-photo-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px -34px rgba(17, 24, 39, 0.58);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.elmansi-about-photo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 129, 95, 0.24);
  box-shadow: 0 28px 62px -38px rgba(23, 129, 95, 0.5);
}

.elmansi-about-photo-card figure {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 250px;
  margin: 0;
  padding: 18px 18px 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(248, 140, 0, 0.13), transparent 42%),
    linear-gradient(145deg, rgba(239, 248, 249, 0.94), rgba(255, 255, 255, 0.86));
}

.elmansi-about-photo-card figure::after {
  content: "";
  position: absolute;
  inset-inline: 28px;
  bottom: 10px;
  height: 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  filter: blur(10px);
}

.elmansi-about-photo-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  height: 245px;
  object-fit: contain;
  object-position: center bottom;
}

.elmansi-about-photo-card div {
  padding: 22px;
  text-align: right;
}

.elmansi-about-photo-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #17815f, #176b87);
  font-size: 13px;
  font-weight: 1000;
}

.elmansi-about-photo-card h3 {
  margin: 14px 0 0;
  color: var(--elmansi-ink);
  font-size: 19px;
  font-weight: 1000;
  line-height: 1.55;
}

.elmansi-about-photo-card p {
  margin: 10px 0 0;
  color: #526171;
  font-size: 14.5px;
  line-height: 1.95;
}

.elmansi-about-seo-band {
  padding-block: 34px;
}

.elmansi-about-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 22px;
  align-items: stretch;
  direction: rtl;
}

.elmansi-about-seo-copy,
.elmansi-about-seo-visual {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px -34px rgba(17, 24, 39, 0.58);
  overflow: hidden;
}

.elmansi-about-seo-copy {
  padding: clamp(22px, 3vw, 34px);
  text-align: right;
}

.elmansi-about-seo-copy h2 {
  margin: 10px 0 0;
  color: var(--elmansi-ink);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 1000;
  line-height: 1.45;
}

.elmansi-about-seo-copy p {
  margin: 16px 0 0;
  color: #526171;
  font-size: 16px;
  line-height: 2;
}

.elmansi-about-seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.elmansi-about-seo-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 107, 135, 0.12);
  border-radius: 999px;
  color: #164e63;
  background: rgba(236, 253, 245, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.elmansi-about-seo-tags a:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 129, 95, 0.34);
  background: #fff;
}

.elmansi-about-seo-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  background: #102f46;
}

.elmansi-about-seo-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.elmansi-about-seo-visual figcaption {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  display: grid;
  gap: 7px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  color: #fff;
  background: rgba(16, 47, 70, 0.82);
  backdrop-filter: blur(10px);
}

.elmansi-about-seo-visual figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.elmansi-about-seo-visual figcaption strong {
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.5;
}

.elmansi-about-video {
  padding-block: 34px;
}

.elmansi-about-video-box {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 9% 6%, rgba(248, 140, 0, 0.12), transparent 28%),
    radial-gradient(circle at 96% 0%, rgba(23, 107, 135, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px -34px rgba(17, 24, 39, 0.58);
  direction: rtl;
}

.elmansi-about-video-copy {
  text-align: right;
}

.elmansi-about-video-copy h2 {
  margin: 10px 0 0;
  color: var(--elmansi-ink);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 1000;
  line-height: 1.45;
}

.elmansi-about-video-copy p {
  margin: 14px 0 0;
  color: #526171;
  line-height: 2;
}

.elmansi-about-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.elmansi-about-video-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(23, 107, 135, 0.14);
  border-radius: 14px;
  color: var(--elmansi-ink);
  background: #fff;
  font-size: 14px;
  font-weight: 1000;
  text-decoration: none;
}

.elmansi-about-video-actions a:first-child {
  color: #fff;
  border-color: rgba(220, 38, 38, 0.28);
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.elmansi-about-video-actions i {
  font-size: 19px;
}

.elmansi-about-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  border-radius: 22px;
  background: #0f172a;
  box-shadow: 0 24px 56px -34px rgba(15, 23, 42, 0.68);
}

.elmansi-about-video-frame iframe,
.elmansi-about-video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.elmansi-about-video-placeholder {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 24px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(220, 38, 38, 0.32), transparent 34%),
    #0f172a;
}

.elmansi-about-video-placeholder i {
  font-size: 54px;
  color: #ef4444;
}

.elmansi-about-video-placeholder strong {
  font-size: 17px;
  font-weight: 1000;
}

@media (max-width: 991.98px) {
  .elmansi-about-photo-intro {
    grid-template-columns: 1fr;
  }

  .elmansi-about-photo-grid {
    grid-template-columns: 1fr;
  }

  .elmansi-about-photo-grid::before {
    display: none;
  }

  .elmansi-about-seo-grid {
    grid-template-columns: 1fr;
  }

  .elmansi-about-video-box {
    grid-template-columns: 1fr;
  }

  .elmansi-about-seo-visual img {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 575.98px) {
  .elmansi-about-photo-blocks {
    padding-block: 22px;
  }

  .elmansi-about-photo-intro {
    margin-bottom: 16px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .elmansi-about-photo-intro::before {
    top: 18px;
    bottom: 18px;
    width: 4px;
  }

  .elmansi-about-photo-intro-copy h2 {
    font-size: 22px;
  }

  .elmansi-about-photo-intro-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .elmansi-about-photo-intro-list span {
    min-height: 46px;
    font-size: 13px;
  }

  .elmansi-about-summary-visual {
    width: min(240px, 100%);
    padding: 10px;
    border-radius: 22px;
  }

  .elmansi-about-summary-visual img {
    border-radius: 16px;
  }

  .elmansi-about-summary {
    padding: 10px;
    border-radius: 22px;
  }

  .elmansi-about-summary-media {
    min-height: 220px;
    padding: 50px 10px 14px;
    border-radius: 18px;
  }

  .elmansi-about-badge {
    top: 12px;
    inset-inline-start: 12px;
    min-height: 34px;
    font-size: 12px;
  }

  .elmansi-about-summary-body {
    margin-top: -14px;
    padding: 20px 14px 16px;
    border-radius: 18px;
  }

  .elmansi-about-summary h2 {
    font-size: 20px;
  }

  .elmansi-about-summary p {
    font-size: 14px;
  }

  .elmansi-about-card-footer {
    grid-template-columns: 1fr;
  }

  .elmansi-about-photo-card {
    border-radius: 20px;
  }

  .elmansi-about-photo-card figure {
    min-height: 205px;
    padding-inline: 12px;
  }

  .elmansi-about-photo-card img {
    height: 205px;
  }

  .elmansi-about-photo-card div {
    padding: 18px 16px;
  }

  .elmansi-about-photo-card h3 {
    font-size: 17px;
  }

  .elmansi-about-photo-card p {
    font-size: 14px;
  }

  .elmansi-about-seo-band {
    padding-block: 22px;
  }

  .elmansi-about-seo-copy,
  .elmansi-about-seo-visual {
    border-radius: 20px;
  }

  .elmansi-about-seo-copy {
    padding: 18px 16px;
  }

  .elmansi-about-seo-copy h2 {
    font-size: 22px;
  }

  .elmansi-about-seo-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .elmansi-about-seo-tags {
    gap: 8px;
  }

  .elmansi-about-seo-tags a {
    width: 100%;
    justify-content: center;
    min-height: 38px;
  }

  .elmansi-about-seo-visual img {
    min-height: 230px;
    aspect-ratio: 4 / 3;
  }

  .elmansi-about-seo-visual figcaption {
    inset-inline: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .elmansi-about-video {
    padding-block: 22px;
  }

  .elmansi-about-video-box {
    padding: 16px;
    border-radius: 20px;
  }

  .elmansi-about-video-copy h2 {
    font-size: 22px;
  }

  .elmansi-about-video-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .elmansi-about-video-actions a {
    width: 100%;
  }

  .elmansi-about-video-frame {
    min-height: 210px;
    border-radius: 18px;
  }
}

@media (max-width: 575.98px) {
  .elmansi-page-home .elmansi-hero-slide {
    padding: 10px 10px 46px;
    gap: 10px;
  }

  .elmansi-page-home .elmansi-hero-image {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .elmansi-page-home .elmansi-hero-content h1,
  .elmansi-page-home .elmansi-hero-content h2 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .elmansi-page-home .elmansi-hero-content p {
    font-size: 13.5px;
    line-height: 1.7;
  }
}

@media (max-width: 380px) {
  .elmansi-page-home .elmansi-hero-actions {
    grid-template-columns: 1fr;
  }

  .elmansi-page-home .elmansi-hero-facts {
    grid-template-columns: 1fr;
  }
}
