/* ==========================================
   Kashaf - Heirs Legacy Pages CSS
   Scoped under .kashaf-heirs-legacy-site
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

/* ── 1. Pain Section ── */
.kashaf-heirs-legacy-site .kashaf-pain-section {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 60px 15px;
  background-color: transparent;
  text-align: center;
}
.kashaf-heirs-legacy-site .pain-title {
  color: #2d2d2d;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
}
.kashaf-heirs-legacy-site .pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.kashaf-heirs-legacy-site .pain-card {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kashaf-heirs-legacy-site .pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(133, 102, 177, 0.12);
  border-bottom: 3px solid #8566b1;
}
.kashaf-heirs-legacy-site .pain-icon {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #8566b1;
  transition: all 0.3s ease;
}
.kashaf-heirs-legacy-site .pain-card:hover .pain-icon {
  background: #8566b1;
  color: #ffffff;
}
.kashaf-heirs-legacy-site .pain-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.kashaf-heirs-legacy-site .pain-card h3 {
  color: #2d2d2d;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 15px 0;
}
.kashaf-heirs-legacy-site .pain-card p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ── 2. Work Cycle ── */
.kashaf-heirs-legacy-site .kashaf-cycle-section {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
}
.kashaf-heirs-legacy-site .cycle-header {
  text-align: center;
  margin-bottom: 60px;
}
.kashaf-heirs-legacy-site .cycle-subtitle {
  color: #8566b1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.kashaf-heirs-legacy-site .cycle-title {
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  margin: 0;
}
.kashaf-heirs-legacy-site .cycle-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.kashaf-heirs-legacy-site .cycle-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 50px;
  left: 50px;
  height: 2px;
  background: rgba(133, 102, 177, 0.15);
  z-index: 1;
}
.kashaf-heirs-legacy-site .cycle-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}
.kashaf-heirs-legacy-site .step-number {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 2px solid #8566b1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 0 0 8px #ffffff;
  transition: all 0.3s ease;
}
.kashaf-heirs-legacy-site .step-number svg {
  width: 35px;
  height: 35px;
  fill: #8566b1;
  transition: all 0.3s ease;
}
.kashaf-heirs-legacy-site .cycle-step:hover .step-number {
  background: #8566b1;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(133, 102, 177, 0.2);
}
.kashaf-heirs-legacy-site .cycle-step:hover .step-number svg {
  fill: #ffffff;
}
.kashaf-heirs-legacy-site .step-title {
  color: #2d2d2d;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 15px 0;
}
.kashaf-heirs-legacy-site .step-desc {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .kashaf-heirs-legacy-site .cycle-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .kashaf-heirs-legacy-site .cycle-timeline::before {
    display: none;
  }
  .kashaf-heirs-legacy-site .cycle-step {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 100%;
    align-items: center;
    gap: 15px;
  }
  .kashaf-heirs-legacy-site .step-number {
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px #ffffff;
  }
}

/* ── 3. Neutral Third-Party Section ── */
.kashaf-heirs-legacy-site .kashaf-neutral-section {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  border-radius: 24px;
}
.kashaf-heirs-legacy-site .neutral-content {
  flex: 1;
  max-width: 550px;
}
.kashaf-heirs-legacy-site .neutral-title {
  color: #2d2d2d;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.3;
}
.kashaf-heirs-legacy-site .neutral-desc {
  color: #555555;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 35px 0;
  font-weight: 500;
}
.kashaf-heirs-legacy-site .neutral-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 45px;
}
.kashaf-heirs-legacy-site .neutral-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}
.kashaf-heirs-legacy-site .neutral-list-item:hover {
  transform: translateX(-5px);
}
.kashaf-heirs-legacy-site .neutral-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  background: rgba(133, 102, 177, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
  margin-top: 2px;
}
.kashaf-heirs-legacy-site .neutral-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.kashaf-heirs-legacy-site .neutral-text {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}
.kashaf-heirs-legacy-site .neutral-text strong {
  color: #8566b1;
  font-size: 18px;
  font-weight: 800;
  display: inline-block;
  margin-left: 5px;
}
.kashaf-heirs-legacy-site .neutral-actions {
  display: flex;
  gap: 15px;
}
.kashaf-heirs-legacy-site .n-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
}
.kashaf-heirs-legacy-site .n-btn-primary {
  background-color: #8566b1;
  color: #ffffff;
  border: 2px solid #8566b1;
  box-shadow: 0 8px 20px rgba(133, 102, 177, 0.2);
}
.kashaf-heirs-legacy-site .n-btn-primary:hover {
  background-color: #6b4d96;
  border-color: #6b4d96;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(133, 102, 177, 0.3);
  color: #ffffff !important;
}
.kashaf-heirs-legacy-site .n-btn-secondary {
  background-color: transparent;
  color: #8566b1;
  border: 2px solid #8566b1;
}
.kashaf-heirs-legacy-site .n-btn-secondary:hover {
  background-color: #8566b1;
  color: #ffffff !important;
}
.kashaf-heirs-legacy-site .n-btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.kashaf-heirs-legacy-site .neutral-image {
  flex: 1;
  position: relative;
}
.kashaf-heirs-legacy-site .neutral-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}
.kashaf-heirs-legacy-site .neutral-image:hover img {
  transform: translateY(-10px);
}
@media (max-width: 1024px) {
  .kashaf-heirs-legacy-site .kashaf-neutral-section {
    flex-direction: column;
    padding: 50px 20px;
    gap: 40px;
  }
  .kashaf-heirs-legacy-site .neutral-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .kashaf-heirs-legacy-site .neutral-actions {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .kashaf-heirs-legacy-site .neutral-title {
    font-size: 28px;
  }
  .kashaf-heirs-legacy-site .neutral-actions {
    flex-direction: column;
  }
  .kashaf-heirs-legacy-site .n-btn {
    width: 100%;
  }
}

/* ── 4. Ecosystem Section ── */
.kashaf-heirs-legacy-site .kashaf-ecosystem {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}
.kashaf-heirs-legacy-site .ecosystem-content {
  flex: 1;
  max-width: 600px;
}
.kashaf-heirs-legacy-site .ecosystem-subtitle {
  color: #8566b1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.kashaf-heirs-legacy-site .ecosystem-title {
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 40px 0;
  line-height: 1.3;
}
.kashaf-heirs-legacy-site .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
  margin-bottom: 45px;
}
.kashaf-heirs-legacy-site .service-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.kashaf-heirs-legacy-site .service-icon-wrap {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  background: rgba(133, 102, 177, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.kashaf-heirs-legacy-site .service-item:hover .service-icon-wrap {
  background: #8566b1;
  color: #ffffff;
  transform: scale(1.05);
}
.kashaf-heirs-legacy-site .service-icon-wrap svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  fill: currentColor;
}
.kashaf-heirs-legacy-site .service-name {
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.kashaf-heirs-legacy-site .ecosystem-image-wrapper {
  flex: 1;
  text-align: left;
  position: relative;
}
.kashaf-heirs-legacy-site .ecosystem-image-wrapper img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
  transition: transform 0.4s ease;
  border-radius: 24px;
}
.kashaf-heirs-legacy-site .ecosystem-image-wrapper:hover img {
  transform: translateY(-10px);
}
@media (max-width: 1024px) {
  .kashaf-heirs-legacy-site .kashaf-ecosystem {
    flex-direction: column;
    text-align: center;
    padding: 50px 15px;
    gap: 40px;
  }
  .kashaf-heirs-legacy-site .services-grid {
    text-align: right;
  }
  .kashaf-heirs-legacy-site .ecosystem-image-wrapper {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .kashaf-heirs-legacy-site .ecosystem-title {
    font-size: 26px;
    margin: 0 0 30px 0;
  }
  .kashaf-heirs-legacy-site .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .kashaf-heirs-legacy-site .service-name {
    font-size: 15px;
  }
}

/* ── 5. Pricing Section ── */
.kashaf-heirs-legacy-site .kashaf-pricing-section {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  text-align: center;
}
.kashaf-heirs-legacy-site .pricing-header {
  margin-bottom: 60px;
}
.kashaf-heirs-legacy-site .pricing-header h2 {
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 10px 0;
}
.kashaf-heirs-legacy-site .pricing-header p {
  color: #666666;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.kashaf-heirs-legacy-site .pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.kashaf-heirs-legacy-site .pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #eeeeee;
}
.kashaf-heirs-legacy-site .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(133, 102, 177, 0.15);
}
.kashaf-heirs-legacy-site .pricing-card.highlighted {
  transform: scale(1.05);
  border: 2px solid #8566b1;
  box-shadow: 0 15px 40px rgba(133, 102, 177, 0.2);
  z-index: 2;
}
.kashaf-heirs-legacy-site .pricing-card.highlighted:hover {
  transform: scale(1.05) translateY(-10px);
}
.kashaf-heirs-legacy-site .popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8566b1;
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.kashaf-heirs-legacy-site .package-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
  text-align: center;
}
.kashaf-heirs-legacy-site .package-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #666666;
  margin-bottom: 30px;
  display: block;
  min-height: 22px;
  text-align: center;
}
.kashaf-heirs-legacy-site .package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: right;
  flex-grow: 1;
}
.kashaf-heirs-legacy-site .package-features li {
  font-size: 16px;
  color: #444444;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.kashaf-heirs-legacy-site .package-features li::before {
  content: "✓";
  color: #8566b1;
  font-weight: bold;
  font-size: 18px;
}
.kashaf-heirs-legacy-site .pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
}
.kashaf-heirs-legacy-site .btn-outline {
  background-color: transparent;
  color: #8566b1;
  border: 2px solid #8566b1;
}
.kashaf-heirs-legacy-site .btn-outline:hover {
  background-color: #8566b1;
  color: #ffffff;
}
.kashaf-heirs-legacy-site .btn-solid {
  background-color: #8566b1;
  color: #ffffff;
  border: 2px solid #8566b1;
}
.kashaf-heirs-legacy-site .btn-solid:hover {
  background-color: #6b4d96;
  border-color: #6b4d96;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .kashaf-heirs-legacy-site .pricing-card.highlighted {
    transform: scale(1);
  }
  .kashaf-heirs-legacy-site .pricing-card.highlighted:hover {
    transform: translateY(-10px);
  }
}

/* ── Preview banner (proof-slice only) ── */
.kashaf-preview-banner {
  background: linear-gradient(135deg, #8566b1, #6b4d96);
  color: #ffffff;
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  text-align: center;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
/* Native Heirs Hero */
.kashaf-heirs-legacy-site .kashaf-hero {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  background: #ffffff;
  padding: 48px 20px 42px;
  overflow: hidden;
}

.kashaf-heirs-legacy-site .kashaf-hero-inner {
  max-width: 1200px;
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 42px;
}

.kashaf-heirs-legacy-site .kashaf-hero-copy {
  order: 1;
  text-align: right;
  justify-self: end;
  max-width: 620px;
  animation: kashafHeroFadeIn 0.55s ease both;
}

.kashaf-heirs-legacy-site .kashaf-hero-copy h1 {
  color: #2d2d2d;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
}

.kashaf-heirs-legacy-site .kashaf-hero-lead,
.kashaf-heirs-legacy-site .kashaf-hero-text {
  color: #2d2d2d;
  font-size: 18px;
  line-height: 1.9;
  margin: 0;
}

.kashaf-heirs-legacy-site .kashaf-hero-lead {
  margin-bottom: 18px;
}

.kashaf-heirs-legacy-site .kashaf-hero-text {
  color: #444444;
  max-width: 590px;
}

.kashaf-heirs-legacy-site .kashaf-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.kashaf-heirs-legacy-site .kashaf-hero-btn {
  min-width: 160px;
  min-height: 54px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.kashaf-heirs-legacy-site .kashaf-hero-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.kashaf-heirs-legacy-site .kashaf-hero-btn-primary {
  background: #8566b1;
  box-shadow: 0 14px 28px rgba(133, 102, 177, 0.18);
}

.kashaf-heirs-legacy-site .kashaf-hero-btn-primary:hover {
  background: #6f54a0;
}

.kashaf-heirs-legacy-site .kashaf-hero-btn-dark {
  background: #000000;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.kashaf-heirs-legacy-site .kashaf-hero-btn-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

.kashaf-heirs-legacy-site .kashaf-hero-visual {
  order: 2;
  position: relative;
  width: min(100%, 520px);
  min-height: 500px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.kashaf-heirs-legacy-site .kashaf-hero-person {
  position: relative;
  z-index: 2;
  width: min(400px, 78vw);
  max-width: 100%;
  height: auto;
  display: block;
  animation: kashafHeroFadeIn 0.6s ease both;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer {
  position: absolute;
  z-index: 3;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.12));
  pointer-events: none;
  animation-fill-mode: both;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer-menu {
  width: 125px;
  right: 48px;
  top: 68px;
  animation: kashafHeroZoomIn 0.6s ease 0.1s both;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer-phone {
  width: 150px;
  left: 6px;
  top: 14px;
  animation: kashafHeroZoomInRight 1.25s ease 0.6s both;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer-map {
  width: 150px;
  right: 32px;
  bottom: 70px;
  animation: kashafHeroZoomInLeft 0.6s ease 0.35s both;
}

/* Government Platforms Marquee */
.kashaf-heirs-legacy-site .kashaf-gov-platforms {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  text-align: center;
  padding: 50px 20px 44px;
  overflow: hidden;
  background: #ffffff;
}

.kashaf-heirs-legacy-site .kashaf-gov-platforms h3 {
  color: #2d2d2d;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
}

.kashaf-heirs-legacy-site .kashaf-gov-platforms p {
  color: #8566b1;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 34px;
}

.kashaf-heirs-legacy-site .gov-marquee-wrap {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  padding: 18px 34px;
  box-sizing: border-box;
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.kashaf-heirs-legacy-site .gov-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: kashafGovLogoScroll 26s linear infinite;
  will-change: transform;
}

.kashaf-heirs-legacy-site .gov-logo-set {
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
  padding-inline: clamp(21px, 2.5vw, 36px);
  flex: 0 0 auto;
}

.kashaf-heirs-legacy-site .gov-marquee-track:hover {
  animation-play-state: paused;
}

.kashaf-heirs-legacy-site .gov-marquee-track img {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: grayscale(0.08);
  opacity: 0.96;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.kashaf-heirs-legacy-site .gov-marquee-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes kashafHeroFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes kashafHeroZoomIn {
  0% { opacity: 0; transform: scale(0.3); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes kashafHeroZoomInRight {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(240px);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale(0.48) translateX(-8px);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  100% { opacity: 1; transform: scale(1) translateX(0); }
}

@keyframes kashafHeroZoomInLeft {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(-240px);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale(0.48) translateX(8px);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  100% { opacity: 1; transform: scale(1) translateX(0); }
}

@keyframes kashafGovLogoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}

@media (max-width: 1024px) {
  .kashaf-heirs-legacy-site .kashaf-hero-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 470px;
    gap: 24px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-copy h1 {
    font-size: 32px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-person {
    width: 340px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-layer-menu {
    width: 112px;
    right: 12px;
    top: 82px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-layer-phone {
    width: 130px;
    left: -12px;
    top: 36px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-layer-map {
    width: 112px;
    right: 8px;
    bottom: 84px;
  }
}

@media (max-width: 767px) {
  .kashaf-heirs-legacy-site .kashaf-hero {
    padding: 34px 16px 24px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 24px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-copy,
  .kashaf-heirs-legacy-site .kashaf-hero-visual {
    order: initial;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-copy {
    justify-self: center;
    text-align: center;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-copy h1 {
    font-size: 30px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-lead,
  .kashaf-heirs-legacy-site .kashaf-hero-text {
    font-size: 16px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-actions {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-btn {
    min-width: min(46vw, 170px);
    padding-inline: 14px;
    font-size: 15px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-visual {
    min-height: 340px;
    width: min(100%, 400px);
    overflow: hidden;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-person {
    width: min(100%, 300px);
  }

  .kashaf-heirs-legacy-site .kashaf-hero-layer-menu {
    width: 98px;
    right: 16px;
    top: 62px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-layer-phone {
    width: 108px;
    left: 12px;
    top: 28px;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-layer-map {
    width: 118px;
    right: 20px;
    bottom: 48px;
  }

  .kashaf-heirs-legacy-site .gov-marquee-wrap {
    padding-inline: 18px;
  }

  .kashaf-heirs-legacy-site .gov-logo-set {
    gap: 34px;
    padding-inline: 17px;
  }

  .kashaf-heirs-legacy-site .gov-marquee-track img {
    height: 44px;
    max-width: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kashaf-heirs-legacy-site .kashaf-hero-copy,
  .kashaf-heirs-legacy-site .kashaf-hero-person,
  .kashaf-heirs-legacy-site .kashaf-hero-layer,
  .kashaf-heirs-legacy-site .gov-marquee-track {
    animation: none;
  }
}
/* Phase 4 Preview Pages */
.kashaf-heirs-legacy-site .kashaf-subhero {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 82px 20px;
  background: linear-gradient(135deg, rgba(133, 102, 177, 0.08), rgba(44, 165, 141, 0.08));
  text-align: center;
  overflow: hidden;
}

.kashaf-heirs-legacy-site .kashaf-subhero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.kashaf-heirs-legacy-site .kashaf-breadcrumb,
.kashaf-heirs-legacy-site .kashaf-section-kicker {
  display: inline-block;
  color: #8566b1;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.kashaf-heirs-legacy-site .kashaf-subhero h1 {
  color: #2d2d2d;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 18px;
}

.kashaf-heirs-legacy-site .kashaf-subhero p {
  color: #555555;
  font-size: 20px;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 860px;
}

.kashaf-heirs-legacy-site .kashaf-split-section {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 52px;
}

.kashaf-heirs-legacy-site .kashaf-split-copy h2,
.kashaf-heirs-legacy-site .kashaf-values-section h2,
.kashaf-heirs-legacy-site .kashaf-form-copy h2,
.kashaf-heirs-legacy-site .kashaf-tabs-section h2 {
  color: #2d2d2d;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 18px;
}

.kashaf-heirs-legacy-site .kashaf-split-copy p,
.kashaf-heirs-legacy-site .kashaf-form-copy p,
.kashaf-heirs-legacy-site .kashaf-tabs-section p {
  color: #555555;
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 22px;
}

.kashaf-heirs-legacy-site .kashaf-split-media {
  margin: 0;
}

.kashaf-heirs-legacy-site .kashaf-split-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
}

.kashaf-heirs-legacy-site .kashaf-mission-grid,
.kashaf-heirs-legacy-site .kashaf-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.kashaf-heirs-legacy-site .kashaf-feature-grid {
  max-width: 1180px;
  margin: 34px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kashaf-heirs-legacy-site .kashaf-feature-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kashaf-heirs-legacy-site .kashaf-mission-grid article,
.kashaf-heirs-legacy-site .kashaf-feature-grid article,
.kashaf-heirs-legacy-site .kashaf-contact-grid article {
  background: #ffffff;
  border: 1px solid rgba(133, 102, 177, 0.1);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.kashaf-heirs-legacy-site .kashaf-feature-grid article span,
.kashaf-heirs-legacy-site .kashaf-contact-grid article span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(133, 102, 177, 0.1);
  color: #8566b1;
  font-weight: 800;
}

.kashaf-heirs-legacy-site .kashaf-mission-grid h3,
.kashaf-heirs-legacy-site .kashaf-feature-grid h3,
.kashaf-heirs-legacy-site .kashaf-contact-grid h3 {
  color: #2d2d2d;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
}

.kashaf-heirs-legacy-site .kashaf-mission-grid p,
.kashaf-heirs-legacy-site .kashaf-feature-grid p,
.kashaf-heirs-legacy-site .kashaf-contact-grid p {
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.kashaf-heirs-legacy-site .kashaf-values-section,
.kashaf-heirs-legacy-site .kashaf-tabs-section,
.kashaf-heirs-legacy-site .kashaf-contact-grid {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 76px 20px;
  text-align: center;
}

.kashaf-heirs-legacy-site .kashaf-muted-band {
  background: #f8f7fb;
}

.kashaf-heirs-legacy-site .kashaf-ecosystem-compact {
  padding-top: 60px;
}

.kashaf-heirs-legacy-site .kashaf-form-band {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  max-width: 1120px;
  margin: 50px auto 80px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
  background: #ffffff;
  border: 1px solid rgba(133, 102, 177, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.kashaf-heirs-legacy-site .kashaf-form-wrap {
  min-width: 0;
}

.kashaf-heirs-legacy-site .kashaf-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.kashaf-heirs-legacy-site .kashaf-check-list li {
  color: #444444;
  font-size: 17px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.kashaf-heirs-legacy-site .kashaf-check-list li::before {
  content: "✓";
  color: #8566b1;
  font-weight: 800;
}

.kashaf-heirs-legacy-site .kashaf-phone-media img {
  object-fit: cover;
}

.kashaf-heirs-legacy-site .kashaf-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
  padding: 8px;
  background: #f8f7fb;
  border-radius: 14px;
}

.kashaf-heirs-legacy-site .kashaf-tabs button {
  border: 0;
  border-radius: 10px;
  padding: 14px 22px;
  background: transparent;
  color: #555555;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.kashaf-heirs-legacy-site .kashaf-tabs button.is-active {
  background: #8566b1;
  color: #ffffff;
}

.kashaf-heirs-legacy-site .kashaf-tab-panel {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 42px;
  align-items: center;
  text-align: right;
}

.kashaf-heirs-legacy-site .kashaf-tab-panel[hidden] {
  display: none;
}

.kashaf-heirs-legacy-site .kashaf-tab-panel img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
}

.kashaf-heirs-legacy-site .kashaf-contact-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.kashaf-heirs-legacy-site .kashaf-contact-grid strong {
  display: block;
  color: #8566b1;
  font-size: 20px;
  margin-bottom: 8px;
}

.kashaf-heirs-legacy-site .package-title-gold {
  color: #d9a05b;
}

.kashaf-heirs-legacy-site .package-title-purple {
  color: #8566b1;
}

.kashaf-heirs-legacy-site .package-title-green {
  color: #2ca58d;
}

@media (max-width: 1024px) {
  .kashaf-heirs-legacy-site .kashaf-split-section,
  .kashaf-heirs-legacy-site .kashaf-form-band,
  .kashaf-heirs-legacy-site .kashaf-tab-panel {
    grid-template-columns: 1fr;
  }

  .kashaf-heirs-legacy-site .kashaf-feature-grid,
  .kashaf-heirs-legacy-site .kashaf-feature-grid-four,
  .kashaf-heirs-legacy-site .kashaf-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .kashaf-heirs-legacy-site .kashaf-subhero {
    padding: 54px 16px;
  }

  .kashaf-heirs-legacy-site .kashaf-subhero h1,
  .kashaf-heirs-legacy-site .kashaf-split-copy h2,
  .kashaf-heirs-legacy-site .kashaf-values-section h2,
  .kashaf-heirs-legacy-site .kashaf-form-copy h2,
  .kashaf-heirs-legacy-site .kashaf-tabs-section h2 {
    font-size: 28px;
  }

  .kashaf-heirs-legacy-site .kashaf-subhero p,
  .kashaf-heirs-legacy-site .kashaf-split-copy p,
  .kashaf-heirs-legacy-site .kashaf-form-copy p,
  .kashaf-heirs-legacy-site .kashaf-tabs-section p {
    font-size: 16px;
  }

  .kashaf-heirs-legacy-site .kashaf-split-section,
  .kashaf-heirs-legacy-site .kashaf-values-section,
  .kashaf-heirs-legacy-site .kashaf-tabs-section,
  .kashaf-heirs-legacy-site .kashaf-contact-grid {
    padding: 48px 16px;
  }

  .kashaf-heirs-legacy-site .kashaf-mission-grid,
  .kashaf-heirs-legacy-site .kashaf-feature-grid,
  .kashaf-heirs-legacy-site .kashaf-feature-grid-four,
  .kashaf-heirs-legacy-site .kashaf-contact-grid {
    grid-template-columns: 1fr;
  }

  .kashaf-heirs-legacy-site .kashaf-form-band {
    margin: 30px 16px 58px;
    padding: 24px;
  }
}
/* Phase 3 migrated inline blocks */
.kashaf-heirs-legacy-site .pricing-note {
  margin-top: 45px;
  display: inline-block;
  background: rgba(133, 102, 177, 0.1);
  color: #8566b1;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Tajawal", sans-serif;
  border: 1px solid rgba(133, 102, 177, 0.2);
}

.kashaf-heirs-legacy-site .kashaf-faq-section {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}

.kashaf-heirs-legacy-site .kashaf-faq-section h2 {
  color: #2d2d2d;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 40px;
}

.kashaf-heirs-legacy-site .kashaf-faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.kashaf-heirs-legacy-site .kashaf-faq-item:hover {
  box-shadow: 0 8px 25px rgba(133, 102, 177, 0.1);
}

.kashaf-heirs-legacy-site .kashaf-faq-btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 25px;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 800;
  font-family: "Tajawal", sans-serif;
}

.kashaf-heirs-legacy-site .kashaf-faq-btn[aria-expanded="true"] {
  color: #8566b1;
}

.kashaf-heirs-legacy-site .kashaf-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(133, 102, 177, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 15px;
  color: #8566b1;
  font-size: 20px;
  line-height: 1;
}

.kashaf-heirs-legacy-site .kashaf-faq-btn[aria-expanded="true"] .kashaf-faq-icon {
  background: #8566b1;
  color: #ffffff;
}

.kashaf-heirs-legacy-site .kashaf-faq-answer {
  display: none;
  padding: 0 25px 25px;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}

.kashaf-heirs-legacy-site .kashaf-faq-answer.open {
  display: block;
}

.kashaf-heirs-legacy-site .kashaf-app-cta {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 50px;
  background: linear-gradient(135deg, #8566b1, #6b4d96);
  border-radius: 24px;
  color: #ffffff;
}

.kashaf-heirs-legacy-site .kashaf-app-cta-text h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 12px;
}

.kashaf-heirs-legacy-site .kashaf-app-cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 0;
}

.kashaf-heirs-legacy-site .kashaf-app-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.kashaf-heirs-legacy-site .kashaf-app-badges img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.kashaf-heirs-legacy-site .kashaf-app-badges img:hover {
  transform: translateY(-3px);
}

/* Google Play badge: not published yet — shown disabled, not clickable. */
.kashaf-heirs-legacy-site .kashaf-app-badges .app-badge-soon {
  display: inline-flex;
  opacity: 0.45;
  cursor: default;
  filter: grayscale(1);
}
.kashaf-heirs-legacy-site .kashaf-app-badges .app-badge-soon img:hover {
  transform: none;
}

@media (max-width: 768px) {
  .kashaf-heirs-legacy-site .kashaf-app-cta {
    flex-direction: column;
    text-align: center;
    margin: 50px 15px;
    padding: 35px 25px;
  }

  .kashaf-heirs-legacy-site .kashaf-app-badges {
    justify-content: center;
  }
}

.kashaf-heirs-legacy-site .kashaf-app-cta-shell {
  padding: 20px 15px 60px;
}
.kashaf-heirs-legacy-site .kashaf-source-subhero-services {
  --kashaf-subhero-image: url('../images/heirs-subhero-services.jpg');
}
.kashaf-heirs-legacy-site .kashaf-source-subhero {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  color: #130a24;
  background: linear-gradient(rgba(246, 244, 250, 0.93), rgba(246, 244, 250, 0.93)), var(--kashaf-subhero-image) center/cover no-repeat;
  border-bottom: 1px solid rgba(133, 102, 177, 0.08);
}
.kashaf-heirs-legacy-site .kashaf-source-subhero-inner {
  max-width: 920px;
  margin: 0 auto;
}
.kashaf-heirs-legacy-site .kashaf-source-breadcrumb,
.kashaf-heirs-legacy-site .kashaf-source-subhero a {
  color: #8566b1;
  font-weight: 700;
}
.kashaf-heirs-legacy-site .kashaf-source-subhero h1 {
  color: #130a24;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.35;
  margin: 12px 0 16px;
}
.kashaf-heirs-legacy-site .kashaf-source-subhero p {
  color: #645f70;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}
.kashaf-heirs-legacy-site .kashaf-inline-gold { color: #D9A05B; }
.kashaf-heirs-legacy-site .kashaf-inline-purple { color: #8566B1; }
.kashaf-heirs-legacy-site .kashaf-inline-green { color: #2CA58D; }

.kashaf-heirs-legacy-site .kashaf-pain-section{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 60px 15px;
  background-color: transparent;
  text-align: center;
}.kashaf-heirs-legacy-site .pain-title{
  color: #2d2d2d;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
}.kashaf-heirs-legacy-site .pain-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}.kashaf-heirs-legacy-site .pain-card{
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}.kashaf-heirs-legacy-site .pain-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(133, 102, 177, 0.12);
  border-bottom: 3px solid #8566b1;
}.kashaf-heirs-legacy-site .pain-icon{
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #8566b1;
  transition: all 0.3s ease;
}.kashaf-heirs-legacy-site .pain-card:hover .pain-icon{
  background: #8566b1;
  color: #ffffff;
}.kashaf-heirs-legacy-site .pain-icon svg{
  width: 28px;
  height: 28px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .pain-card h3{
  color: #2d2d2d;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 15px 0;
}.kashaf-heirs-legacy-site .pain-card p{
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}.kashaf-heirs-legacy-site .kashaf-cycle-section{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
}.kashaf-heirs-legacy-site .cycle-header{
  text-align: center;
  margin-bottom: 60px;
}.kashaf-heirs-legacy-site .cycle-subtitle{
  color: #8566b1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}.kashaf-heirs-legacy-site .cycle-title{
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  margin: 0;
}.kashaf-heirs-legacy-site .cycle-timeline{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}.kashaf-heirs-legacy-site .cycle-timeline::before{
  content: "";
  position: absolute;
  top: 40px;
  right: 50px;
  left: 50px;
  height: 2px;
  background: rgba(133, 102, 177, 0.15);
  z-index: 1;
}.kashaf-heirs-legacy-site .cycle-step{
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}.kashaf-heirs-legacy-site .step-number{
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 2px solid #8566b1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 0 0 8px #ffffff;
  transition: all 0.3s ease;
}.kashaf-heirs-legacy-site .step-number svg{
  width: 35px;
  height: 35px;
  fill: #8566b1;
  transition: all 0.3s ease;
}.kashaf-heirs-legacy-site .cycle-step:hover .step-number{
  background: #8566b1;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(133, 102, 177, 0.2);
}.kashaf-heirs-legacy-site .cycle-step:hover .step-number svg{
  fill: #ffffff;
}.kashaf-heirs-legacy-site .step-title{
  color: #2d2d2d;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 15px 0;
}.kashaf-heirs-legacy-site .step-desc{
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .cycle-timeline{
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }.kashaf-heirs-legacy-site .cycle-timeline::before{
    display: none;
  }.kashaf-heirs-legacy-site .cycle-step{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 100%;
    align-items: center;
    gap: 15px;
  }.kashaf-heirs-legacy-site .step-number{
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px #ffffff;
  }
}@media (max-width: 576px){.kashaf-heirs-legacy-site .cycle-step{
    flex-direction: column;
    text-align: center;
  }.kashaf-heirs-legacy-site .cycle-timeline::before{
    display: none;
  }
}.kashaf-heirs-legacy-site .kashaf-neutral-section{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  border-radius: 24px;
}.kashaf-heirs-legacy-site .neutral-content{
  flex: 1;
  max-width: 550px;
}.kashaf-heirs-legacy-site .neutral-title{
  color: #2d2d2d;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.3;
}.kashaf-heirs-legacy-site .neutral-desc{
  color: #555555;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 35px 0;
  font-weight: 500;
}.kashaf-heirs-legacy-site .neutral-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 45px;
}.kashaf-heirs-legacy-site .neutral-list-item{
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}.kashaf-heirs-legacy-site .neutral-list-item:hover{
  transform: translateX(-5px);
}.kashaf-heirs-legacy-site .neutral-icon{
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  background: rgba(133, 102, 177, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
  margin-top: 2px;
}.kashaf-heirs-legacy-site .neutral-icon svg{
  width: 16px;
  height: 16px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .neutral-text{
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}.kashaf-heirs-legacy-site .neutral-text strong{
  color: #8566b1;
  font-size: 18px;
  font-weight: 800;
  display: inline-block;
  margin-left: 5px;
}.kashaf-heirs-legacy-site .neutral-actions{
  display: flex;
  gap: 15px;
}.kashaf-heirs-legacy-site .n-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
}.kashaf-heirs-legacy-site .n-btn-primary{
  background-color: #8566b1;
  color: #ffffff;
  border: 2px solid #8566b1;
  box-shadow: 0 8px 20px rgba(133, 102, 177, 0.2);
}.kashaf-heirs-legacy-site .n-btn-primary:hover{
  background-color: #6b4d96;
  border-color: #6b4d96;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(133, 102, 177, 0.3);
  color: #ffffff !important;
}.kashaf-heirs-legacy-site .n-btn-secondary{
  background-color: transparent;
  color: #8566b1;
  border: 2px solid #8566b1;
}.kashaf-heirs-legacy-site .n-btn-secondary:hover{
  background-color: #8566b1;
  color: #ffffff !important;
}.kashaf-heirs-legacy-site .n-btn-icon svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .neutral-image{
  flex: 1;
  position: relative;
}.kashaf-heirs-legacy-site .neutral-image img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}.kashaf-heirs-legacy-site .neutral-image:hover img{
  transform: translateY(-10px);
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .kashaf-neutral-section{
    flex-direction: column;
    padding: 50px 20px;
    gap: 40px;
  }.kashaf-heirs-legacy-site .neutral-content{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }.kashaf-heirs-legacy-site .neutral-title, .kashaf-heirs-legacy-site .neutral-desc{
    text-align: center;
  }.kashaf-heirs-legacy-site .neutral-list{
    width: 100%;
    max-width: 450px;
    text-align: right;
  }.kashaf-heirs-legacy-site .neutral-actions{
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
}@media (max-width: 576px){.kashaf-heirs-legacy-site .neutral-title{
    font-size: 28px;
  }.kashaf-heirs-legacy-site .neutral-actions{
    flex-direction: column;
  }.kashaf-heirs-legacy-site .n-btn{
    width: 100%;
  }
}.kashaf-heirs-legacy-site .kashaf-ecosystem{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}.kashaf-heirs-legacy-site .ecosystem-content{
  flex: 1;
  max-width: 600px;
}.kashaf-heirs-legacy-site .ecosystem-subtitle{
  color: #8566b1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}.kashaf-heirs-legacy-site .ecosystem-title{
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 40px 0;
  line-height: 1.3;
}.kashaf-heirs-legacy-site .services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
  margin-bottom: 45px;
}.kashaf-heirs-legacy-site .service-item{
  display: flex;
  align-items: center;
  gap: 15px;
}.kashaf-heirs-legacy-site .service-icon-wrap{
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  background: rgba(133, 102, 177, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}.kashaf-heirs-legacy-site .service-item:hover .service-icon-wrap{
  background: #8566b1;
  color: #ffffff;
  transform: scale(1.05);
}.kashaf-heirs-legacy-site .service-icon-wrap svg{
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .service-name{
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}.kashaf-heirs-legacy-site .ecosystem-image-wrapper{
  flex: 1;
  text-align: left;
  position: relative;
}.kashaf-heirs-legacy-site .ecosystem-image-wrapper img{
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
  transition: transform 0.4s ease;
  border-radius: 24px;
  overflow: hidden;
}.kashaf-heirs-legacy-site .ecosystem-image-wrapper:hover img{
  transform: translateY(-10px);
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .kashaf-ecosystem{
    flex-direction: column;
    text-align: center;
    padding: 50px 15px;
    gap: 40px;
  }.kashaf-heirs-legacy-site .services-grid{
    text-align: right;
  }.kashaf-heirs-legacy-site .ecosystem-image-wrapper{
    text-align: center;
  }
}@media (max-width: 576px){.kashaf-heirs-legacy-site .ecosystem-title{
    font-size: 26px;
    margin: 0 0 30px 0;
  }.kashaf-heirs-legacy-site .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }.kashaf-heirs-legacy-site .service-name{
    font-size: 15px;
  }
}.kashaf-heirs-legacy-site .kashaf-pricing-section{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  text-align: center;
}.kashaf-heirs-legacy-site .pricing-header{
  margin-bottom: 60px;
}.kashaf-heirs-legacy-site .pricing-header h2{
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 10px 0;
}.kashaf-heirs-legacy-site .pricing-header p{
  color: #666666;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}.kashaf-heirs-legacy-site .pricing-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}.kashaf-heirs-legacy-site .pricing-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #eeeeee;
}.kashaf-heirs-legacy-site .pricing-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(133, 102, 177, 0.15);
}.kashaf-heirs-legacy-site .pricing-card.highlighted{
  transform: scale(1.05);
  border: 2px solid #8566b1;
  box-shadow: 0 15px 40px rgba(133, 102, 177, 0.2);
  z-index: 2;
}.kashaf-heirs-legacy-site .pricing-card.highlighted:hover{
  transform: scale(1.05) translateY(-10px);
}.kashaf-heirs-legacy-site .popular-badge{
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8566b1;
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}.kashaf-heirs-legacy-site .package-title{
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
}.kashaf-heirs-legacy-site .package-subtitle{
  font-size: 15px;
  font-weight: 600;
  color: #666666;
  margin-bottom: 30px;
  display: block;
  min-height: 22px;
}.kashaf-heirs-legacy-site .package-features{
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: right;
  flex-grow: 1;
}.kashaf-heirs-legacy-site .package-features li{
  font-size: 16px;
  color: #444444;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}.kashaf-heirs-legacy-site .package-features li::before{
  content: "✓";
  color: #8566b1;
  font-weight: bold;
  font-size: 18px;
}.kashaf-heirs-legacy-site .pricing-btn{
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
}.kashaf-heirs-legacy-site .btn-outline{
  background-color: transparent;
  color: #8566b1;
  border: 2px solid #8566b1;
}.kashaf-heirs-legacy-site .btn-outline:hover{
  background-color: #8566b1;
  color: #ffffff;
}.kashaf-heirs-legacy-site .btn-solid{
  background-color: #8566b1;
  color: #ffffff;
  border: 2px solid #8566b1;
}.kashaf-heirs-legacy-site .btn-solid:hover{
  background-color: #6b4d96;
  border-color: #6b4d96;
  color: #ffffff;
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .pricing-card.highlighted{
    transform: scale(1);
  }.kashaf-heirs-legacy-site .pricing-card.highlighted:hover{
    transform: translateY(-10px);
  }
}.kashaf-heirs-legacy-site .kashaf-b2b-values{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}.kashaf-heirs-legacy-site .b2b-header{
  margin-bottom: 50px;
}.kashaf-heirs-legacy-site .b2b-subtitle{
  color: #8566b1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0.5px;
}.kashaf-heirs-legacy-site .b2b-title{
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  margin: 0;
}.kashaf-heirs-legacy-site .b2b-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}.kashaf-heirs-legacy-site .b2b-card{
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(133, 102, 177, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}.kashaf-heirs-legacy-site .b2b-card::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #8566b1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}.kashaf-heirs-legacy-site .b2b-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(133, 102, 177, 0.12);
  border-color: transparent;
}.kashaf-heirs-legacy-site .b2b-card:hover::after{
  transform: scaleX(1);
}.kashaf-heirs-legacy-site .b2b-icon-wrap{
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  background: rgba(133, 102, 177, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}.kashaf-heirs-legacy-site .b2b-card:hover .b2b-icon-wrap{
  background: #8566b1;
  color: #ffffff;
  transform: rotateY(180deg);
}.kashaf-heirs-legacy-site .b2b-icon-wrap svg{
  width: 30px;
  height: 30px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .b2b-card-title{
  color: #2d2d2d;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 15px 0;
}.kashaf-heirs-legacy-site .b2b-card-desc{
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .b2b-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}@media (max-width: 768px){.kashaf-heirs-legacy-site .kashaf-b2b-values{
    padding: 50px 15px;
  }.kashaf-heirs-legacy-site .b2b-title{
    font-size: 28px;
  }.kashaf-heirs-legacy-site .b2b-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }.kashaf-heirs-legacy-site .b2b-card{
    padding: 30px 20px;
  }
}.kashaf-heirs-legacy-site .kashaf-b2b-tabs-section{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 60px 15px;
  background-color: transparent;
  max-width: 1200px;
  margin: 0 auto;
}.kashaf-heirs-legacy-site .kashaf-tabs-nav{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  background: #ffffff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(133, 102, 177, 0.08);
}.kashaf-heirs-legacy-site .kashaf-tab-btn{
  flex: 1;
  max-width: 250px;
  padding: 15px 20px;
  border: none;
  background: transparent;
  color: #666666;
  font-size: 18px;
  font-weight: 700;
  font-family: "Tajawal", sans-serif;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}.kashaf-heirs-legacy-site .kashaf-tab-btn svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .kashaf-tab-btn:hover{
  color: #8566b1;
  background: rgba(133, 102, 177, 0.05);
}.kashaf-heirs-legacy-site .kashaf-tab-btn.active{
  background: #8566b1;
  color: #ffffff;
  box-shadow: 0 8px 15px rgba(133, 102, 177, 0.2);
}.kashaf-heirs-legacy-site .kashaf-tab-content{
  position: relative;
  min-height: 400px;
}.kashaf-heirs-legacy-site .kashaf-tab-pane{
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(133, 102, 177, 0.08);
}.kashaf-heirs-legacy-site .kashaf-tab-pane.active{
  display: flex;
  opacity: 1;
  transform: translateY(0);
  gap: 40px;
  align-items: center;
}.kashaf-heirs-legacy-site .pane-text{
  flex: 1;
}.kashaf-heirs-legacy-site .pane-title{
  color: #8566b1;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}.kashaf-heirs-legacy-site .pane-heading{
  color: #2d2d2d;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.4;
}.kashaf-heirs-legacy-site .pane-desc{
  color: #555555;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}.kashaf-heirs-legacy-site .pane-features{
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}.kashaf-heirs-legacy-site .pane-features li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #2d2d2d;
  font-weight: 600;
}.kashaf-heirs-legacy-site .pane-features li svg{
  width: 20px;
  height: 20px;
  fill: #8566b1;
  margin-top: 3px;
  flex-shrink: 0;
}.kashaf-heirs-legacy-site .pane-cta{
  display: inline-flex;
  padding: 14px 35px;
  background: #8566b1;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(133, 102, 177, 0.2);
}.kashaf-heirs-legacy-site .pane-cta:hover{
  background: #6b4d96;
  transform: translateY(-3px);
  color: #ffffff !important;
}.kashaf-heirs-legacy-site .pane-image{
  flex: 1;
  text-align: left;
}.kashaf-heirs-legacy-site .pane-image img{
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .kashaf-tab-pane.active{
    flex-direction: column;
    padding: 30px 20px;
  }.kashaf-heirs-legacy-site .pane-image{
    text-align: center;
  }
}@media (max-width: 768px){.kashaf-heirs-legacy-site .kashaf-tabs-nav{
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }.kashaf-heirs-legacy-site .kashaf-tab-btn{
    max-width: 100%;
    width: 100%;
    padding: 12px;
  }.kashaf-heirs-legacy-site .pane-heading{
    font-size: 24px;
  }
}.kashaf-heirs-legacy-site .kashaf-app-showcase{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}.kashaf-heirs-legacy-site .app-content{
  flex: 1;
  max-width: 600px;
}.kashaf-heirs-legacy-site .app-subtitle{
  color: #8566b1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}.kashaf-heirs-legacy-site .app-title{
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 25px 0;
  line-height: 1.3;
}.kashaf-heirs-legacy-site .app-desc{
  color: #555555;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 40px 0;
}.kashaf-heirs-legacy-site .app-features-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
  margin-bottom: 45px;
}.kashaf-heirs-legacy-site .app-feature-item{
  display: flex;
  align-items: center;
  gap: 15px;
}.kashaf-heirs-legacy-site .feature-icon-wrap{
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  background: rgba(133, 102, 177, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}.kashaf-heirs-legacy-site .app-feature-item:hover .feature-icon-wrap{
  transform: scale(1.1);
  background: #8566b1;
  color: #ffffff;
}.kashaf-heirs-legacy-site .feature-icon-wrap svg{
  width: 20px;
  height: 20px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .feature-name{
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}.kashaf-heirs-legacy-site .app-actions{
  display: flex;
  gap: 15px;
}.kashaf-heirs-legacy-site .app-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
}.kashaf-heirs-legacy-site .btn-download{
  background-color: #8566b1;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(133, 102, 177, 0.2);
}.kashaf-heirs-legacy-site .btn-download:hover{
  background-color: #6b4d96;
  transform: translateY(-3px);
  color: #ffffff;
}.kashaf-heirs-legacy-site .btn-download svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .app-image-wrapper{
  flex: 1;
  text-align: left;
  position: relative;
}.kashaf-heirs-legacy-site .app-image-wrapper img{
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
  transition: transform 0.4s ease;
  border-radius: 24px;
  overflow: hidden;
}.kashaf-heirs-legacy-site .app-image-wrapper:hover img{
  transform: translateY(-10px);
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .kashaf-app-showcase{
    flex-direction: column;
    text-align: center;
    padding: 50px 15px;
    gap: 40px;
  }.kashaf-heirs-legacy-site .app-features-grid{
    text-align: right;
  }.kashaf-heirs-legacy-site .app-actions{
    justify-content: center;
  }.kashaf-heirs-legacy-site .app-image-wrapper{
    text-align: center;
  }
}@media (max-width: 576px){.kashaf-heirs-legacy-site .app-title{
    font-size: 28px;
  }.kashaf-heirs-legacy-site .app-features-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }.kashaf-heirs-legacy-site .feature-name{
    font-size: 15px;
  }.kashaf-heirs-legacy-site .app-actions{
    flex-direction: column;
    width: 100%;
  }.kashaf-heirs-legacy-site .app-btn{
    width: 100%;
  }
}.kashaf-heirs-legacy-site .kashaf-heirs-pain{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}.kashaf-heirs-legacy-site .hp-content{
  flex: 1;
  max-width: 550px;
}.kashaf-heirs-legacy-site .hp-subtitle{
  color: #8566b1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  background: rgba(133, 102, 177, 0.1);
  padding: 6px 15px;
  border-radius: 20px;
}.kashaf-heirs-legacy-site .hp-title{
  color: #2d2d2d;
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.4;
}.kashaf-heirs-legacy-site .hp-desc{
  color: #555555;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 35px 0;
  font-weight: 500;
}.kashaf-heirs-legacy-site .hp-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}.kashaf-heirs-legacy-site .hp-item{
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
}.kashaf-heirs-legacy-site .hp-item:hover{
  transform: translateX(-5px);
  border-color: #8566b1;
}.kashaf-heirs-legacy-site .hp-icon{
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: rgba(133, 102, 177, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
}.kashaf-heirs-legacy-site .hp-icon svg{
  width: 20px;
  height: 20px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .hp-text-box h4{
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
}.kashaf-heirs-legacy-site .hp-text-box p{
  color: #666666;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}.kashaf-heirs-legacy-site .hp-image{
  flex: 1;
  position: relative;
}.kashaf-heirs-legacy-site .hp-image img{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}.kashaf-heirs-legacy-site .hp-image::before{
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: #8566b1;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.1;
}.kashaf-heirs-legacy-site .hp-image::after{
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-color: #d9a05b;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .kashaf-heirs-pain{
    flex-direction: column;
    padding: 50px 15px;
    gap: 40px;
    text-align: center;
  }.kashaf-heirs-legacy-site .hp-content{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }.kashaf-heirs-legacy-site .hp-item{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
  }.kashaf-heirs-legacy-site .hp-item:hover{
    transform: translateY(-5px);
  }
}@media (max-width: 768px){.kashaf-heirs-legacy-site .hp-title{
    font-size: 28px;
  }
}.kashaf-heirs-legacy-site .kashaf-merged-solutions{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  max-width: 1200px;
  margin: 0 auto;
}.kashaf-heirs-legacy-site .ms-header{
  text-align: center;
  margin-bottom: 60px;
}.kashaf-heirs-legacy-site .ms-subtitle{
  color: #8566b1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}.kashaf-heirs-legacy-site .ms-title{
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  margin: 0;
  line-height: 1.4;
}.kashaf-heirs-legacy-site .ms-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}.kashaf-heirs-legacy-site .ms-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(133, 102, 177, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  position: relative;
  overflow: hidden;
}.kashaf-heirs-legacy-site .ms-card::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background-color: #8566b1;
  transition: height 0.3s ease;
}.kashaf-heirs-legacy-site .ms-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(133, 102, 177, 0.1);
}.kashaf-heirs-legacy-site .ms-card:hover::before{
  height: 100%;
}.kashaf-heirs-legacy-site .ms-icon{
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  background: rgba(133, 102, 177, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}.kashaf-heirs-legacy-site .ms-card:hover .ms-icon{
  background: #8566b1;
  color: #ffffff;
}.kashaf-heirs-legacy-site .ms-icon svg{
  width: 26px;
  height: 26px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .ms-card-title{
  color: #2d2d2d;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px 0;
}.kashaf-heirs-legacy-site .ms-card-desc{
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}.kashaf-heirs-legacy-site .problem-highlight{
  display: inline-block;
  color: #d9a05b;
  font-size: 13px;
  font-weight: 700;
  background: rgba(217, 160, 91, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .ms-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}@media (max-width: 768px){.kashaf-heirs-legacy-site .kashaf-merged-solutions{
    padding: 50px 15px;
  }.kashaf-heirs-legacy-site .ms-title{
    font-size: 28px;
  }.kashaf-heirs-legacy-site .ms-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }.kashaf-heirs-legacy-site .ms-card{
    align-items: center;
    text-align: center;
    padding: 35px 20px;
  }.kashaf-heirs-legacy-site .ms-card::before{
    width: 100%;
    height: 4px;
    right: 0;
    bottom: 0;
    top: auto;
    transition: width 0.3s ease;
    width: 0;
  }.kashaf-heirs-legacy-site .ms-card:hover::before{
    width: 100%;
    height: 4px;
  }
}.kashaf-heirs-legacy-site .kashaf-about-integrated{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 80px 15px;
  background-color: transparent;
  max-width: 1200px;
  margin: 0 auto;
}.kashaf-heirs-legacy-site .about-story-section{
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}.kashaf-heirs-legacy-site .story-content{
  flex: 1;
}.kashaf-heirs-legacy-site .story-badge{
  color: #8566b1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  background: rgba(133, 102, 177, 0.1);
  padding: 6px 15px;
  border-radius: 20px;
}.kashaf-heirs-legacy-site .story-title{
  color: #2d2d2d;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 25px 0;
  line-height: 1.4;
}.kashaf-heirs-legacy-site .story-desc{
  color: #555555;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}.kashaf-heirs-legacy-site .story-image-wrap{
  flex: 1;
  position: relative;
}.kashaf-heirs-legacy-site .story-image-wrap img{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}.kashaf-heirs-legacy-site .story-image-wrap::before{
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8566b1 0%, #6b4d96 100%);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.1;
}.kashaf-heirs-legacy-site .vmv-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}.kashaf-heirs-legacy-site .vmv-card{
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
  z-index: 1;
}.kashaf-heirs-legacy-site .vmv-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(133, 102, 177, 0.12);
  border-top-color: #8566b1;
}.kashaf-heirs-legacy-site .vmv-watermark{
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  color: rgba(133, 102, 177, 0.04);
  z-index: -1;
  transform: rotate(-15deg);
  transition: all 0.4s ease;
}.kashaf-heirs-legacy-site .vmv-card:hover .vmv-watermark{
  color: rgba(133, 102, 177, 0.08);
  transform: rotate(0deg) scale(1.1);
}.kashaf-heirs-legacy-site .vmv-watermark svg{
  width: 100%;
  height: 100%;
  fill: currentColor;
}.kashaf-heirs-legacy-site .vmv-icon{
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
  margin-bottom: 25px;
}.kashaf-heirs-legacy-site .vmv-icon svg{
  width: 28px;
  height: 28px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .vmv-title{
  color: #2d2d2d;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 15px 0;
}.kashaf-heirs-legacy-site .vmv-desc{
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}.kashaf-heirs-legacy-site .values-list{
  list-style: none;
  padding: 0;
  margin: 0;
}.kashaf-heirs-legacy-site .values-list li{
  color: #555555;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}.kashaf-heirs-legacy-site .values-list li::before{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #8566b1;
  border-radius: 50%;
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .about-story-section{
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }.kashaf-heirs-legacy-site .story-image-wrap::before{
    right: 0;
    bottom: -15px;
  }.kashaf-heirs-legacy-site .vmv-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}@media (max-width: 768px){.kashaf-heirs-legacy-site .kashaf-about-integrated{
    padding: 50px 15px;
  }.kashaf-heirs-legacy-site .story-title{
    font-size: 28px;
  }.kashaf-heirs-legacy-site .vmv-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }.kashaf-heirs-legacy-site .vmv-card{
    padding: 40px 25px;
    text-align: center;
  }.kashaf-heirs-legacy-site .vmv-icon{
    margin: 0 auto 25px auto;
  }.kashaf-heirs-legacy-site .values-list li{
    justify-content: center;
  }
}.kashaf-heirs-legacy-site .kashaf-contact-section{
  font-family: "Tajawal", sans-serif;
  direction: rtl;
  padding: 60px 15px;
  max-width: 1100px;
  margin: 0 auto;
}.kashaf-heirs-legacy-site .contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}.kashaf-heirs-legacy-site .contact-card{
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(133, 102, 177, 0.1);
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}.kashaf-heirs-legacy-site .contact-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(133, 102, 177, 0.15);
  border-color: #8566b1;
}.kashaf-heirs-legacy-site .contact-icon{
  width: 65px;
  height: 65px;
  background: rgba(133, 102, 177, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8566b1;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}.kashaf-heirs-legacy-site .contact-card:hover .contact-icon{
  background: #8566b1;
  color: #ffffff;
}.kashaf-heirs-legacy-site .contact-icon svg{
  width: 28px;
  height: 28px;
  fill: currentColor;
}.kashaf-heirs-legacy-site .contact-label{
  color: #8566b1;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
}.kashaf-heirs-legacy-site .contact-info{
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  line-height: 1.4;
}.kashaf-heirs-legacy-site .contact-cta-text{
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}@media (max-width: 1024px){.kashaf-heirs-legacy-site .contact-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}@media (max-width: 600px){.kashaf-heirs-legacy-site .contact-grid{
    grid-template-columns: 1fr;
  }.kashaf-heirs-legacy-site .contact-card{
    padding: 30px 20px;
  }
}.kashaf-heirs-legacy-site .fluentform{
  font-family: "Tajawal", sans-serif !important;
}.kashaf-heirs-legacy-site .fluentform .ff-el-input--label{
  font-weight: 700 !important;
  color: #2d2d2d !important;
  margin-bottom: 8px !important;
}.kashaf-heirs-legacy-site .fluentform .ff-el-form-control{
  border-radius: 8px !important;
  border: 1px solid #e2e8f0 !important;
  padding: 12px 15px !important;
  background-color: #fafafa !important;
  color: #2d2d2d !important;
  min-height: 48px !important;
  transition: all 0.3s ease !important;
}.kashaf-heirs-legacy-site .fluentform .ff-el-form-control:focus{
  background-color: #ffffff !important;
  border-color: #8566b1 !important;
  box-shadow: 0 0 0 3px rgba(133, 102, 177, 0.15) !important;
  outline: none !important;
}.kashaf-heirs-legacy-site .fluentform .ff-el-form-control::placeholder{
  color: #a0aec0 !important;
  opacity: 1 !important;
}.kashaf-heirs-legacy-site .fluentform select.ff-el-form-control{
  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  padding-right: 15px !important;
  padding-left: 35px !important;
  color: #a0aec0 !important;
}.kashaf-heirs-legacy-site .fluentform select.ff-el-form-control option{
  color: #2d2d2d !important;
  background-color: #ffffff !important;
}.kashaf-heirs-legacy-site .fluentform .ff-btn-submit{
  background-color: #8566b1 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 14px 25px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  width: 100% !important;
  border: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 20px rgba(133, 102, 177, 0.2) !important;
}.kashaf-heirs-legacy-site .fluentform .ff-btn-submit:hover{
  background-color: #6b4d96 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(133, 102, 177, 0.3) !important;
}@keyframes customZoomIn{
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}@keyframes customZoomInRight{
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(1000px);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(-10px);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}@keyframes customZoomInLeft{
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(-1000px);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(10px);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}@keyframes customFadeIn{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Kashaf preview parity fixes */
.kashaf-heirs-legacy-site {
  --kashaf-subhero-image: url('../images/heirs-subhero-services.jpg');
}

.kashaf-heirs-legacy-site .kashaf-source-subhero {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  margin: 0 0 60px;
  background: linear-gradient(rgba(246, 244, 250, 0.93), rgba(246, 244, 250, 0.93)), var(--kashaf-subhero-image) center/cover no-repeat !important;
  border-bottom: 1px solid rgba(133, 102, 177, 0.08);
}

.kashaf-heirs-legacy-site .kashaf-source-subhero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.kashaf-heirs-legacy-site .kashaf-source-crumb,
.kashaf-heirs-legacy-site .kashaf-source-crumb p,
.kashaf-heirs-legacy-site .kashaf-source-crumb a,
.kashaf-heirs-legacy-site .kashaf-source-subhero-desc,
.kashaf-heirs-legacy-site .kashaf-source-subhero-desc p {
  color: #645f70 !important;
}

/* Premium Breadcrumbs Pill Styling */
.kashaf-heirs-legacy-site .kashaf-source-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(133, 102, 177, 0.06) !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(133, 102, 177, 0.15) !important;
  box-shadow: 0 4px 12px rgba(19, 10, 36, 0.03);
}

.kashaf-heirs-legacy-site .kashaf-source-crumb a {
  color: #645f70 !important;
  text-decoration: none !important;
  transition: color 0.25s ease;
}

.kashaf-heirs-legacy-site .kashaf-source-crumb a:hover {
  color: #b45309 !important;
}

.kashaf-heirs-legacy-site .kashaf-source-crumb .current-page {
  color: #b45309 !important;
}

.kashaf-heirs-legacy-site .kashaf-source-subhero h1 {
  color: #130a24 !important;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 18px;
}

.kashaf-heirs-legacy-site .kashaf-source-subhero-desc p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

.kashaf-heirs-legacy-site .kashaf-hero {
  padding: 60px 20px 70px;
}

.kashaf-heirs-legacy-site .kashaf-hero-inner {
  max-width: 1240px;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
}

.kashaf-heirs-legacy-site .kashaf-hero-visual {
  width: min(100%, 560px);
  min-height: 520px;
  position: relative;
}

.kashaf-heirs-legacy-site .kashaf-hero-person {
  width: min(420px, 80vw);
  margin-inline: auto;
  display: block;
}

/* Layer wrappers to separate entrance & continuous floating animations */
.kashaf-heirs-legacy-site .kashaf-hero-layer-wrap {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  display: block;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer-menu-wrap {
  width: 155px;
  right: 6px;
  top: 20px;
  animation: kashafHeroZoomIn 0.6s ease 0.1s both;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer-agent-wrap {
  width: 116px;
  left: 20px;
  top: 56px;
  animation: kashafHeroZoomInLeft 0.6s ease 0.2s both;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer-dashboard-wrap {
  width: 155px;
  right: 32px;
  bottom: 42px;
  animation: kashafHeroZoomInRight 0.6s ease 0.35s both;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.12));
}

.kashaf-heirs-legacy-site .kashaf-hero-layer-menu-wrap .kashaf-hero-layer {
  animation: kashafFloatMenu 4s ease-in-out infinite alternate;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer-agent-wrap .kashaf-hero-layer {
  animation: kashafFloatAgent 5s ease-in-out infinite alternate;
}

.kashaf-heirs-legacy-site .kashaf-hero-layer-dashboard-wrap .kashaf-hero-layer {
  animation: kashafFloatDashboard 4.5s ease-in-out infinite alternate;
}

@keyframes kashafFloatMenu {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes kashafFloatAgent {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

@keyframes kashafFloatDashboard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.kashaf-heirs-legacy-site .pricing-note {
  margin: 45px auto 0;
  display: inline-block;
  background: rgba(133, 102, 177, 0.1);
  color: #8566b1;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid rgba(133, 102, 177, 0.2);
  clear: both;
  position: relative;
  z-index: 1;
}

.kashaf-heirs-legacy-site .kashaf-pricing-section .pricing-container {
  align-items: stretch;
  margin-bottom: 0;
}

.kashaf-heirs-legacy-site .kashaf-pricing-section .pricing-card {
  min-height: 0;
}

.kashaf-heirs-legacy-site .kashaf-form-section {
  padding: 70px 15px;
}

.kashaf-heirs-legacy-site .kashaf-loose-content {
  padding: 26px 15px 8px;
  text-align: center;
}

.kashaf-heirs-legacy-site .kashaf-loose-content-inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.kashaf-heirs-legacy-site .kashaf-loose-content h2 {
  color: #8566b1;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px;
}

.kashaf-heirs-legacy-site .kashaf-loose-content p {
  color: #555555;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 10px;
}

.kashaf-heirs-legacy-site .kashaf-form-wrap {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.kashaf-heirs-legacy-site .kashaf-form-wrap h2 {
  color: #2d2d2d;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 32px;
}

.kashaf-heirs-legacy-site .fluentform {
  max-width: 100% !important;
}

.kashaf-heirs-legacy-site .fluentform .ff-el-group {
  margin-bottom: 22px !important;
}

.kashaf-heirs-legacy-site .fluentform .ff-el-form-control {
  width: 100% !important;
  box-sizing: border-box !important;
}

.kashaf-heirs-legacy-site .kashaf-b2b-tabs-section .kashaf-tab-pane {
  display: none !important;
}

.kashaf-heirs-legacy-site .kashaf-b2b-tabs-section .kashaf-tab-pane.active {
  display: flex !important;
}

/* Contact page Google Map Section Styles (Contained and responsive) */
.kashaf-heirs-legacy-site .kashaf-map-section {
  width: min(100%, 1120px);
  margin: 60px auto 80px;
  padding: 0 16px;
  box-sizing: border-box;
}

.kashaf-heirs-legacy-site .kashaf-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(133, 102, 177, 0.12);
  line-height: 0;
}

.kashaf-heirs-legacy-site .kashaf-map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* Logos Marquee Loop left-to-right & Force LTR for layout consistency */
.kashaf-heirs-legacy-site .gov-marquee-wrap,
.kashaf-heirs-legacy-site .gov-marquee-track,
.kashaf-heirs-legacy-site .gov-logo-set {
  direction: ltr !important;
}

@keyframes kashafGovLogoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}

@media (max-width: 1024px) {
  .kashaf-heirs-legacy-site .kashaf-hero-inner {
    grid-template-columns: 1fr;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-copy {
    text-align: center;
    justify-self: center;
  }

  .kashaf-heirs-legacy-site .kashaf-hero-actions {
    justify-content: center;
  }

  .kashaf-heirs-legacy-site .kashaf-b2b-tabs-section .kashaf-tab-pane.active {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .kashaf-heirs-legacy-site .kashaf-source-subhero h1,
  .kashaf-heirs-legacy-site .kashaf-form-wrap h2 {
    font-size: 28px;
  }

  /* Keep the full desktop arrangement (person + 3 animated layers) but scale the
     whole canvas down so everything stays visible and the entrance/float
     animations still play on phones, instead of clipping or hiding the layers. */
  .kashaf-heirs-legacy-site .kashaf-hero-visual {
    transform: scale(0.66);
    transform-origin: top center;
    margin-bottom: -150px;
    overflow: visible;
  }
}

@media (max-width: 400px) {
  .kashaf-heirs-legacy-site .kashaf-hero-visual {
    transform: scale(0.56);
    margin-bottom: -185px;
  }
}
