.mor-pa {
  --ink: #0D0D0D; 
  --ink-2: #262626; 
  --muted: #595959;
  --gold: #B08B25; 
  --gold-d: #825E24; 
  --orange: #FFA534;
  color: var(--ink);
  font-family: 'Heebo', sans-serif; /* fallback */
  line-height: 1.5; 
  -webkit-font-smoothing: antialiased;
  direction: rtl; 
  text-align: right;
  width: 100%;
}
.mor-pa * {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: inherit;
}
.mor-pa h2, .mor-pa h3, .mor-pa h4 {
  line-height: .95; 
  letter-spacing: -.03em; 
  font-weight: 900; 
  color: var(--ink);
}
.mor-pa a {
    color: inherit; 
    text-decoration: none;
}
.mor-pa .mor-pa-wrap {
    max-width: 1440px; 
    margin: 0 auto; 
    padding: 0 32px;
}

/* Top heading */
.mor-pa .mor-pa-head {
    padding: 60px 0 20px;
}
.mor-pa .mor-pa-head h2 {
  font-size: 84px; 
  line-height: .9; 
  font-weight: 900; 
  letter-spacing: -.04em;
  color: var(--ink);
}
.mor-pa .mor-pa-head h2 em {
  color: var(--gold); 
  font-style: italic; 
  font-weight: 400;
}

/* Services list */
.mor-pa .mor-pa-svcs {
    padding: 30px 0 60px;
}
.mor-pa .mor-pa-svc {
  display: grid; 
  grid-template-columns: 200px 1fr 380px 60px; /* adjusted for icon */
  gap: 40px;
  align-items: center; 
  padding: 32px 0; 
  border-top: 2px solid var(--ink);
  transition: .35s ease; 
  cursor: pointer; 
  position: relative; 
  overflow: hidden;
  text-decoration: none; 
  color: inherit;
}
.mor-pa .mor-pa-svc:last-child {
    border-bottom: 2px solid var(--ink);
}
.mor-pa .mor-pa-svc::before {
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: var(--gold);
  transform: translateX(-100%); 
  transition: .45s ease; 
  z-index: 0;
}
.mor-pa .mor-pa-svc:hover::before {
    transform: translateX(0);
}
.mor-pa .mor-pa-svc:hover .dep-bg {
    opacity: 1 !important;
}
.mor-pa .mor-pa-svc:hover * {
    color: #fff !important; 
    border-color: #fff !important;
}
.mor-pa .mor-pa-svc > * {
    position: relative; 
    z-index: 1;
}
.mor-pa .mor-pa-svc .nn {
  font-size: 60px; /* slightly smaller to fit icon */
  font-weight: 900; 
  line-height: 1;
  color: var(--gold); 
  font-style: italic;
  display: flex;
  align-items: center;
}
.mor-pa .mor-pa-svc .ti {
  font-size: 44px; 
  font-weight: 900; 
  line-height: 1;
  letter-spacing: -.03em; 
  color: var(--ink);
}
.mor-pa .mor-pa-svc .ds {
    font-size: 15px; 
    color: var(--muted); 
    line-height: 1.65;
}
.mor-pa .mor-pa-svc .ar {
    font-size: 36px; 
    text-align: left; 
    color: var(--gold-d);
}

/* Marquee strip */
.mor-pa .mor-pa-strip {
  padding: 30px 0; 
  background: var(--gold);
  overflow: hidden; 
  position: relative;
}
.mor-pa .mor-pa-strip::before {
  content: ""; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-d) 50%, var(--gold) 100%);
  opacity: .4; 
  pointer-events: none;
}
.mor-pa .mor-pa-strip-marq {
  display: flex; 
  gap: 60px; 
  animation: mor-pa-marq 25s linear infinite;
  white-space: nowrap; 
  font-weight: 900; 
  font-size: 32px; 
  line-height: 1;
  letter-spacing: -.03em; 
  align-items: center; 
  color: #fff;
  position: relative; 
  z-index: 1;
  width: max-content;
}
.mor-pa .mor-pa-strip-marq span {
    display: flex; 
    gap: 60px; 
    align-items: center;
}
.mor-pa .mor-pa-strip-marq span::after {
    content: "✦"; 
    color: var(--orange); 
    font-size: 24px;
}
@keyframes mor-pa-marq {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Mobile */
@media (max-width: 900px) {
  .mor-pa .mor-pa-head h2 { font-size: 48px; }
  .mor-pa .mor-pa-svc {
    grid-template-columns: 80px 1fr 30px; 
    gap: 18px; 
    padding: 22px 0;
  }
  .mor-pa .mor-pa-svc .nn { font-size: 36px; }
  .mor-pa .mor-pa-svc .ti { font-size: 26px; grid-column: span 1; }
  .mor-pa .mor-pa-svc .ds { grid-column: 1 / -1; margin-top: 10px; }
  .mor-pa .mor-pa-svc .ar { font-size: 24px; }
  .mor-pa .mor-pa-strip-marq { font-size: 20px; }
}