.hero-dar-almahara {
  position: relative;
  min-height: 100dvh;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--dark-hero);
}
.btn-hero:hover {
  color: #000;
}
.hero-slider,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.5s,
    visibility 1.5s;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.slide.active img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgb(6 11 19 / 0.95) 0%,
    rgb(6 11 19 / 0.8) 50%,
    rgb(6 11 19 / 0.4) 100%
  );
  z-index: 3;
}
.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-content {
  max-width: 780px;
  text-align: right;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1.2s forwards 0.2s;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(255 255 255 / 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgb(255 255 255 / 0.1);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 28px;
}
.hero-badge .star-icon {
  color: var(--primary);
}
.hero-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}
.title-highlight {
  color: var(--primary);
  display: block;
  margin-top: 5px;
}
.hero-description {
  font-size: 20px;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 40px;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 42px;
  min-height: 64px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.btn-hero::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: #fff;
  border-radius: 50% 50% 0 0;
  z-index: -1;
  transition: var(--transition-smooth);
}
.btn-hero:hover::before {
  bottom: 0;
  border-radius: 0;
}
.btn-hero svg {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
}
.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 10px 25px var(--primary-glow);
}
.btn-hero-primary:hover {
  color: var(--dark-hero);
  border-color: #fff;
}
.btn-hero-secondary {
  background: rgb(255 255 255 / 0.05);
  border: 2px solid rgb(255 255 255 / 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}
.trust-section {
  border-top: 1px solid rgb(255 255 255 / 0.15);
  display: inline-block;
  padding-top: 20px;
}
.stars {
  color: #fbbf24;
  font-size: 1.6rem;
  letter-spacing: 5px;
  margin-bottom: 6px;
}
.trust-text {
  color: #94a3b8;
  font-size: 1.05rem;
  font-weight: 700;
}
.slider-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  background: rgb(255 255 255 / 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--primary);
  width: 42px;
  border-radius: 20px;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero-container {
    max-width: 1500px;
  }
  .hero-content {
    max-width: 850px;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-description {
    font-size: 22px;
    max-width: 760px;
  }
}
@media (max-width: 1200px) {
  .hero-dar-almahara {
    min-height: 650px;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-description {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .hero-dar-almahara {
    min-height: 680px;
    height: auto;
    padding: 120px 0 80px;
  }
  .hero-container {
    justify-content: center;
    text-align: center;
  }
  .hero-content {
    text-align: center;
    max-width: 700px;
  }
  .hero-badge {
    margin-inline: auto;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-dar-almahara {
    min-height: auto;
    padding: 110px 0 70px;
  }
  .hero-container {
    padding: 0 22px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-title {
    font-size: 30px;
    line-height: 1.35;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.9;
  }
  .hero-actions {
    max-width: 340px;
    margin: auto;
    flex-direction: column;
  }
  .btn-hero {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero-dar-almahara {
    padding: 95px 0 65px;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-badge {
    font-size: 14px;
    padding: 8px 15px;
  }
  .btn-hero {
    min-height: 54px;
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .hero-title {
    font-size: 22px;
  }
  .hero-description {
    font-size: 14px;
  }
}
:root {
  --primary: #f05a28;
  --secondary: #0f1e36;
  --text-muted: #475569;
}
.showcase-section {
  padding: 140px 6% 120px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
.showcase-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
}
.showcase-visual-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgb(15 30 54 / 0.12);
}
.showcase-visual-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgb(255 255 255 / 0.35) 50%,
    transparent 60%
  );
  transform: skewX(-25deg);
  transition: all 0.8s ease;
  opacity: 0;
  z-index: 2;
}
.showcase-visual-wrapper:hover::before {
  opacity: 1;
  left: 120%;
}
.showcase-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 32px;
}
.showcase-visual-wrapper:hover .showcase-main-img {
  transform: scale(1.04);
}
.showcase-visual-wrapper::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgb(240 90 40 / 0.15);
  border-radius: 38px;
  pointer-events: none;
  z-index: 1;
}
.showcase-info {
  text-align: right;
}
.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  background: rgb(240 90 40 / 0.1);
  padding: 8px 24px;
  border-radius: 50px;
}
.showcase-title {
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.25;
  margin: 28px 0 24px;
}
.showcase-title span {
  color: var(--primary);
}
.showcase-desc {
  font-size: 1.18rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.btn-genius {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 19px 46px;
  background: var(--secondary);
  color: #fff;
  font-size: 1.13rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.4s ease;
}
.btn-genius:hover {
  background: var(--primary);
  transform: translateY(-4px);
}
@media (max-width: 992px) {
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 70px;
    text-align: center;
  }
  .showcase-info {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .showcase-section {
    padding: 90px 5% 80px;
  }
  .showcase-title {
    font-size: 2.2rem;
  }
}
.darm-service-section {
  padding: 80px 0;
  background: #f8fafc;
  font-family: Tajawal, sans-serif;
  direction: rtl;
}
.darm-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.darm-top_sec {
  text-align: center;
  margin-bottom: 60px;
}
.darm-sup-title {
  font-size: 30px;
  font-weight: 900;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.darm-sup-title svg {
  width: 40px;
  color: #f05a28;
}
.darm-sup-title span {
  color: #f05a28;
}
.darm-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.darm-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 15px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.4s ease;
  position: relative;
}
.darm-card:hover {
  transform: translateY(-8px);
  border-color: #f05a28;
  box-shadow: 0 20px 40px rgb(240 90 40 / 0.15);
}
.darm-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.darm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.darm-hover-overlay {
  position: absolute;
  inset: 0;
  background: #fff0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  opacity: 0;
}
.darm-card:hover .darm-hover-overlay {
  background: rgb(255 255 255 / 0.1);
  opacity: 1;
}
.darm-view-more {
  background: rgb(240 90 40 / 0.95);
  padding: 8px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  transform: translateY(10px);
  transition: 0.4s;
  font-size: 0.9rem;
  white-space: nowrap;
}
.darm-card:hover .darm-view-more {
  transform: translateY(0);
}
.darm-view-more svg {
  width: 18px;
}
.darm-content {
  padding: 20px 10px;
  text-align: center;
}
.darm-content h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: 0.3s;
}
.darm-card:hover h2 {
  color: #f05a28;
}
.darm-all-btn {
  text-align: center;
  margin-top: 50px;
}
.darm-btn-main {
  padding: 15px 40px;
  background: #f05a28;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s;
}
.darm-btn-main:hover {
  background: #d44516;
  box-shadow: 0 10px 20px rgb(240 90 40 / 0.3);
}
@media (max-width: 991px) {
  .darm-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .darm-boxs {
    grid-template-columns: 1fr;
  }
  .darm-hover-overlay {
    opacity: 1;
    background: #fff0;
  }
  .darm-view-more {
    transform: translateY(0);
  }
}
.YC-MainPage-Blogs-Section {
  padding: 60px 0;
  background: #fff;
  width: 100%;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}
.YC-MainPage-Blogs-Section .YC-MainTitle-Centered-Box {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.YC-MainPage-Blogs-Section .YC-MainTitle-Centered-Box h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0d1728;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  padding-bottom: 15px;
  margin: 0;
}
.YC-MainPage-Blogs-Section .YC-MainTitle-Centered-Box h2 span.colored-text {
  color: #f05a28;
}
.YC-MainPage-Blogs-Section .YC-MainTitle-Centered-Box h2::before {
  content: "";
  width: 32px;
  height: 32px;
  background-color: #f05a28;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E")
    no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.YC-MainPage-Blogs-Section .YC-MainTitle-Centered-Box h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f05a28, #f05a28);
  border-radius: 10px;
  transform: translateX(-50%) scaleX(1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.YC-MainPage-Blogs-Section:hover .YC-MainTitle-Centered-Box h2::after {
  transform: translateX(-50%) scaleX(1.8);
}
.YC-MainPage-Blogs-Section:hover .YC-MainTitle-Centered-Box h2::before {
  transform: rotate(-10deg) scale(1.1);
}
.YC-MainPage-Blogs-Section .-Posts-RelatedBoxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 45px;
}
.YC-MainPage-Blogs-Section .YC-Blog-Card-Link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    #e5eaef 0 0 0 1px,
    0 4px 6px -3px #09234012;
  border: 1px solid #e5eaef80;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  will-change: transform, box-shadow;
}
.YC-MainPage-Blogs-Section .YC-Blog-Card-Link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #fff0 0%,
    rgb(255 255 255 / 0.4) 50%,
    #fff0 100%
  );
  transform: skewX(-25deg);
  transition: none;
  z-index: 4;
}
.YC-MainPage-Blogs-Section .YC-Blog-Card-Link:hover::before {
  left: 150%;
  transition: all 0.8s ease-in-out;
}
.YC-MainPage-Blogs-Section .YC-Blog-Card-Link:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 40px 1px rgb(13 109 139 / 0.18);
  border-color: #e6f2ff;
}
.YC-MainPage-Blogs-Section .YC-Card-Thumb-Wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}
.YC-MainPage-Blogs-Section .YC-Card-Thumb-Wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(9 23 40 / 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}
.YC-MainPage-Blogs-Section .YC-Card-Thumb-Wrap .YC-Thumb-Img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.YC-MainPage-Blogs-Section .YC-Blog-Card-Link:hover .YC-Card-Thumb-Wrap::after {
  background: #fff0;
}
.YC-MainPage-Blogs-Section
  .YC-Blog-Card-Link:hover
  .YC-Card-Thumb-Wrap
  .YC-Thumb-Img {
  transform: scale(1.08);
  filter: brightness(1.03);
}
.YC-MainPage-Blogs-Section .YC-Post-box-item-Info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 3;
}
.YC-MainPage-Blogs-Section .YC-category-badge p {
  background: #e6f2ff;
  color: #f05a28;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  width: max-content;
  margin-bottom: 14px;
  margin-top: 0;
}
.YC-MainPage-Blogs-Section .YC-title-post-grid {
  font-size: 21px;
  font-weight: 700;
  color: #0d1728;
  line-height: 1.4;
  margin-bottom: 12px;
  margin-top: 0;
  transition: color 0.3s ease;
}
.YC-MainPage-Blogs-Section .YC-Blog-Card-Link:hover .YC-title-post-grid {
  color: #f05a28;
}
.YC-MainPage-Blogs-Section .YC-P-content {
  font-size: 15px;
  color: #535772;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.YC-MainPage-Blogs-Section .YC-Post-Action-BTN {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f05a28;
  font-weight: 700;
  font-size: 15px;
  margin-top: auto;
}
.YC-MainPage-Blogs-Section .YC-Post-Action-BTN svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.YC-MainPage-Blogs-Section .YC-Blog-Card-Link:hover .YC-Post-Action-BTN {
  color: #f05a28;
}
.YC-MainPage-Blogs-Section .YC-Blog-Card-Link:hover .YC-Post-Action-BTN svg {
  transform: translateX(-6px);
}
.YC-MainPage-Blogs-Section .YC-LoadMore-Container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  width: 100%;
}
.YC-MainPage-Blogs-Section .YC-LoadMore-BTN {
  background: #f05a28;
  color: #fff;
  padding: 15px 45px;
  border-radius: 16px;
  font-size: 19px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px -5px rgb(13 109 139 / 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.YC-MainPage-Blogs-Section .YC-LoadMore-BTN svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.YC-MainPage-Blogs-Section .YC-LoadMore-BTN::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #fff0 0%,
    rgb(255 255 255 / 0.3) 50%,
    #fff0 100%
  );
  transform: skewX(-25deg);
}
.YC-MainPage-Blogs-Section .YC-LoadMore-BTN:hover::before {
  left: 150%;
  transition: all 0.8s ease-in-out;
}
.YC-MainPage-Blogs-Section .YC-LoadMore-BTN:hover {
  background: #f05a28;
  box-shadow: 0 20px 40px 1px rgb(13 109 139 / 0.18);
  transform: translateY(-5px);
}
.YC-MainPage-Blogs-Section .YC-LoadMore-BTN:hover svg {
  transform: translateY(5px);
}
@media only screen and (max-width: 768px) {
  .YC-MainPage-Blogs-Section {
    padding: 40px 0;
  }
  .YC-MainPage-Blogs-Section .YC-MainTitle-Centered-Box h2 {
    font-size: 26px;
  }
  .YC-MainPage-Blogs-Section .-Posts-RelatedBoxes {
    gap: 20px;
  }
  .YC-MainPage-Blogs-Section .YC-LoadMore-BTN {
    width: 100%;
    justify-content: center;
  }
}

/*انميشن */
 /* ============================
       القسم الرئيسي
    ============================ */
    .mc-reach {
      position: relative;
      width: 100%;
      padding: 88px 0 72px;
      background:
        radial-gradient(ellipse 90% 55% at 50% -10%, rgba(249,115,22,0.1), transparent),
        linear-gradient(170deg, #f8fafc 0%, #f1f5f9 45%, #e8eef6 100%);
      overflow: hidden;
    }

    /* تدرج خلفي خفيف */
    .mc-reach::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 85%, rgba(249,115,22,0.055) 0%, transparent 42%),
        radial-gradient(circle at 85% 15%, rgba(59,130,246,0.04) 0%, transparent 38%);
      pointer-events: none;
    }

    /* شبكة خلفية خفيفة */
    .mc-reach::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(203,213,225,0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(203,213,225,0.25) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      opacity: 0.5;
    }

    .mc-container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 28px;
      position: relative;
      z-index: 3;
    }

    /* ============================
       الهيدر
    ============================ */
    .mc-header {
      text-align: center;
      margin-bottom: 44px;
    }

    .mc-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(249,115,22,0.09);
      border: 1px solid rgba(249,115,22,0.22);
      border-radius: 50px;
      padding: 7px 18px;
      font-size: 0.78rem;
      font-weight: 700;
      color: #c2410c;
      letter-spacing: 0.04em;
      margin-bottom: 22px;
      opacity: 0;
      animation: mc-fade-up 0.7s 0.1s cubic-bezier(0.22,1,0.36,1) both;
    }

    .mc-eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #f97316;
      animation: mc-pulse-dot 2s ease-in-out infinite;
    }

    @keyframes mc-pulse-dot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%      { transform: scale(1.4); opacity: 0.7; }
    }

    .mc-title {
      font-size: clamp(2.1rem, 5.2vw, 3.3rem);
      font-weight: 900;
      line-height: 1.22;
      color: #0f172a;
      margin-bottom: 18px;
      letter-spacing: -0.6px;
      opacity: 0;
      animation: mc-fade-up 0.75s 0.22s cubic-bezier(0.22,1,0.36,1) both;
    }

    .mc-title em {
      font-style: normal;
      background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .mc-desc {
      font-size: 1.06rem;
      color: #64748b;
      max-width: 540px;
      margin: 0 auto 34px;
      line-height: 1.9;
      font-weight: 500;
      opacity: 0;
      animation: mc-fade-up 0.75s 0.32s cubic-bezier(0.22,1,0.36,1) both;
    }

    /* ============================
       أزرار الاتصال
    ============================ */
    .mc-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 52px;
      opacity: 0;
      animation: mc-fade-up 0.75s 0.42s cubic-bezier(0.22,1,0.36,1) both;
    }

    .mc-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 28px;
      font-family: 'Cairo', sans-serif;
      font-weight: 700;
      font-size: 0.93rem;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: all 0.32s cubic-bezier(0.22,1,0.36,1);
      white-space: nowrap;
    }

    .mc-btn-primary {
      background: linear-gradient(135deg, #f97316, #ea580c);
      color: #fff;
      border-radius: 50px 0 0 50px;
      padding-right: 22px;
      padding-left: 28px;
      box-shadow: 0 8px 24px rgba(249,115,22,0.3);
    }

    .mc-btn-primary:hover {
      background: linear-gradient(135deg, #ea580c, #c2410c);
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(249,115,22,0.4);
    }

    .mc-btn-primary svg {
      width: 17px;
      height: 17px;
      stroke: #fff;
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
    }

    .mc-btn-or {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: #fff;
      border: 1.5px solid #e2e8f0;
      border-radius: 50%;
      font-size: 0.74rem;
      font-weight: 700;
      color: #94a3b8;
      margin: 0 -2px;
      z-index: 2;
      box-shadow: 0 3px 10px rgba(0,0,0,0.07);
      flex-shrink: 0;
    }

    .mc-btn-wa {
      background: #fff;
      color: #334155;
      border: 1.5px solid #e2e8f0;
      border-radius: 0 50px 50px 0;
      padding-left: 22px;
      padding-right: 28px;
      border-right: none;
    }

    .mc-btn-wa:hover {
      border-color: #86efac;
      color: #15803d;
      background: #f0fdf4;
      transform: translateY(-3px);
    }

    .mc-btn-wa svg {
      width: 17px;
      height: 17px;
      flex-shrink: 0;
    }

    /* ============================
       مشهد الرسمة (SVG)
    ============================ */
    .mc-scene-wrap {
      position: relative;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto 14px;
      opacity: 0;
      animation: mc-fade-up 0.85s 0.52s cubic-bezier(0.22,1,0.36,1) both;
    }

    .mc-scene-svg {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 22px;
      overflow: hidden;
    }

    /* ============================
       زر تحديد الموقع
    ============================ */
    .mc-location-cta {
      display: flex;
      justify-content: center;
      margin: 18px 0 10px;
      opacity: 0;
      animation: mc-fade-up 0.7s 0.7s cubic-bezier(0.22,1,0.36,1) both;
    }

    .mc-btn-loc {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 11px 24px;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 50px;
      font-family: 'Cairo', sans-serif;
      font-size: 0.86rem;
      font-weight: 700;
      cursor: pointer;
      overflow: hidden;
      transition: all 0.38s cubic-bezier(0.22,1,0.36,1);
      box-shadow: 0 6px 20px rgba(15,23,42,0.22);
    }

    .mc-btn-loc::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 35%, rgba(249,115,22,0.16) 50%, transparent 65%);
      background-size: 220% 100%;
      animation: mc-shine 3.5s ease-in-out infinite;
    }

    @keyframes mc-shine {
      0%, 100% { background-position: 200% 0; }
      50%      { background-position: -200% 0; }
    }

    .mc-btn-loc:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 38px rgba(15,23,42,0.34);
    }

    .mc-pin-wrap {
      position: relative;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mc-pin-ring {
      position: absolute;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1.5px solid rgba(249,115,22,0.55);
    }

    .mc-pin-ring:nth-child(1) { animation: mc-ring 2s ease-out infinite; }
    .mc-pin-ring:nth-child(2) { animation: mc-ring 2s 0.65s ease-out infinite; }

    @keyframes mc-ring {
      0%   { transform: scale(0.5); opacity: 0.8; }
      100% { transform: scale(1.7); opacity: 0; }
    }

    .mc-pin-ico {
      width: 15px;
      height: 15px;
      stroke: #f97316;
      fill: none;
      stroke-width: 2;
      position: relative;
      z-index: 2;
      animation: mc-pin-bounce 2s ease-in-out infinite;
    }

    @keyframes mc-pin-bounce {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-4px); }
    }

    /* ============================
       بطاقات المميزات
    ============================ */
    .mc-features {
      margin-top: 22px;
      opacity: 0;
      animation: mc-fade-up 0.75s 0.88s cubic-bezier(0.22,1,0.36,1) both;
    }

    .mc-features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      padding-top: 38px;
      border-top: 1px solid rgba(203,213,225,0.6);
    }

    .mc-feat {
      position: relative;
      text-align: center;
      padding: 30px 18px 26px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.75);
      border-radius: 22px;
      box-shadow:
        0 6px 20px rgba(15,23,42,0.05),
        0 18px 42px rgba(15,23,42,0.06),
        inset 0 1px 0 rgba(255,255,255,0.9);
      overflow: hidden;
      transition: all 0.48s cubic-bezier(0.22,1,0.36,1);
      animation: mc-float 6.5s ease-in-out infinite;
    }

    .mc-feat:nth-child(1) { animation-delay: 0s; }
    .mc-feat:nth-child(2) { animation-delay: 1.1s; }
    .mc-feat:nth-child(3) { animation-delay: 1.9s; }
    .mc-feat:nth-child(4) { animation-delay: 0.6s; }

    @keyframes mc-float {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-7px); }
    }

    .mc-feat::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2.5px;
      background: linear-gradient(90deg, #f97316, #fb923c, #f97316);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
    }

    .mc-feat:hover {
      background: rgba(255,255,255,0.9);
      border-color: rgba(253,186,116,0.45);
      box-shadow:
        0 18px 40px rgba(249,115,22,0.13),
        0 6px 16px rgba(15,23,42,0.06),
        inset 0 1px 0 rgba(255,255,255,0.98);
      transform: translateY(-14px);
      animation-play-state: paused;
    }

    .mc-feat:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }

    .mc-feat-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, rgba(255,247,237,0.95), rgba(255,237,213,0.9));
      border-radius: 18px;
      border: 1px solid rgba(253,186,116,0.28);
      box-shadow: 0 6px 16px rgba(249,115,22,0.09);
      transition: all 0.42s cubic-bezier(0.22,1,0.36,1);
    }

    .mc-feat-icon svg {
      width: 27px;
      height: 27px;
      stroke: #ea580c;
      fill: none;
      stroke-width: 1.65;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: all 0.32s ease;
    }

    .mc-feat:hover .mc-feat-icon {
      background: linear-gradient(135deg, #f97316, #ea580c);
      border-color: transparent;
      transform: scale(1.1) rotate(-4deg);
      box-shadow: 0 10px 26px rgba(249,115,22,0.34);
    }

    .mc-feat:hover .mc-feat-icon svg { stroke: #fff; }

    .mc-feat h4 {
      font-size: 0.96rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px;
      transition: color 0.28s;
    }

    .mc-feat:hover h4 { color: #ea580c; }

    .mc-feat p {
      font-size: 0.79rem;
      color: #94a3b8;
      font-weight: 500;
      line-height: 1.5;
    }

    /* ============================
       المودال (طلب الخدمة)
    ============================ */
    .mc-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15,23,42,0.65);
      backdrop-filter: blur(12px);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.32s ease;
    }

    .mc-overlay.mc-open {
      opacity: 1;
      visibility: visible;
    }

    .mc-modal {
      background: #fff;
      border-radius: 28px;
      width: 100%;
      max-width: 468px;
      max-height: 93vh;
      overflow-y: auto;
      box-shadow: 0 32px 72px rgba(15,23,42,0.34);
      transform: translateY(38px) scale(0.94);
      transition: all 0.38s cubic-bezier(0.22,1,0.36,1);
    }

    .mc-overlay.mc-open .mc-modal {
      transform: translateY(0) scale(1);
    }

    .mc-modal-top {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      padding: 26px 28px 24px;
      border-radius: 28px 28px 0 0;
      position: relative;
      overflow: hidden;
    }

    .mc-modal-top::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -15%;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .mc-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .mc-modal-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.28);
      color: #fb923c;
      font-size: 0.73rem;
      font-weight: 700;
      padding: 5px 13px;
      border-radius: 20px;
    }

    .mc-modal-badge svg {
      width: 13px;
      height: 13px;
      stroke: #fb923c;
      fill: none;
      stroke-width: 2;
    }

    .mc-modal-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.1);
      color: #94a3b8;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.22s;
    }

    .mc-modal-close:hover {
      background: rgba(255,255,255,0.18);
      color: #fff;
    }

    .mc-modal-close svg {
      width: 15px;
      height: 15px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
    }

    .mc-modal-top h3 {
      font-size: 1.28rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 5px;
      position: relative;
      z-index: 1;
    }

    .mc-modal-top p {
      font-size: 0.88rem;
      color: #94a3b8;
      font-weight: 500;
      position: relative;
      z-index: 1;
    }

    .mc-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
      position: relative;
      z-index: 1;
    }

    .mc-chip {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.11);
      color: #cbd5e1;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
    }

    .mc-chip svg {
      width: 12px;
      height: 12px;
      stroke: #f97316;
      fill: none;
      stroke-width: 2;
    }

    .mc-modal-body {
      padding: 24px 28px 28px;
    }

    .mc-form-group {
      margin-bottom: 15px;
    }

    .mc-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .mc-form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 700;
      color: #334155;
      margin-bottom: 6px;
    }

    .mc-form-group label span {
      color: #ea580c;
    }

    .mc-input {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid #e2e8f0;
      border-radius: 12px;
      font-family: 'Cairo', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      color: #0f172a;
      background: #f8fafc;
      transition: all 0.24s;
      outline: none;
    }

    .mc-input:focus {
      border-color: #fdba74;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(249,115,22,0.1);
    }

    textarea.mc-input {
      min-height: 82px;
      resize: vertical;
    }

    select.mc-input {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: left 14px center;
      padding-left: 34px;
    }

    .mc-loc-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px;
      background: linear-gradient(135deg, #fff7ed, #ffedd5);
      border: 1.5px dashed #fdba74;
      border-radius: 12px;
      color: #ea580c;
      font-family: 'Cairo', sans-serif;
      font-size: 0.86rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.28s;
    }

    .mc-loc-btn:hover {
      background: #ffedd5;
      border-style: solid;
    }

    .mc-loc-btn.mc-success {
      background: #f0fdf4;
      border-color: #86efac;
      border-style: solid;
      color: #16a34a;
    }

    .mc-loc-btn svg {
      width: 17px;
      height: 17px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .mc-loc-status {
      font-size: 0.76rem;
      color: #64748b;
      margin-top: 6px;
      text-align: center;
      min-height: 17px;
    }

    .mc-loc-status.mc-ok  { color: #16a34a; font-weight: 600; }
    .mc-loc-status.mc-err { color: #dc2626; }

    .mc-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 15px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: #fff;
      border: none;
      border-radius: 14px;
      font-family: 'Cairo', sans-serif;
      font-size: 0.96rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.28s;
      margin-top: 6px;
      box-shadow: 0 6px 22px rgba(37,211,102,0.3);
    }

    .mc-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(37,211,102,0.42);
    }

    .mc-submit svg {
      width: 20px;
      height: 20px;
      fill: #fff;
    }

    /* ============================
       أنيميشن الظهور
    ============================ */
    @keyframes mc-fade-up {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ============================
       التجاوب مع الشاشات
    ============================ */
    @media (max-width: 900px) {
      .mc-container { padding: 0 20px; }
      .mc-scene-wrap { max-width: 100%; }
    }

    @media (max-width: 760px) {
      .mc-reach { padding: 52px 0 40px; }
      .mc-header { margin-bottom: 24px; }
      .mc-title { font-size: clamp(2rem, 6.5vw, 2.5rem); font-weight: 900; }
      .mc-desc { font-size: 1.12rem; margin-bottom: 24px; line-height: 1.85; max-width: 100%; font-weight: 600; }
      .mc-features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .mc-scene-svg { border-radius: 16px; width: 100%; height: auto; min-height: 180px; }
      .mc-scene-wrap { overflow: hidden; }
      .mc-location-cta { margin: 16px 0 10px; }
      .mc-btn-loc { padding: 13px 24px; font-size: 0.95rem; }
      .mc-feat { padding: 24px 14px 20px; animation: none; }
      .mc-feat h4 { font-size: 1rem; }
      .mc-feat p { font-size: 0.85rem; }
      .mc-feat-icon { width: 54px; height: 54px; }
      .mc-feat-icon svg { width: 24px; height: 24px; }
    }

    @media (max-width: 600px) {
      .mc-reach { padding: 40px 0 32px; }
      .mc-container { padding: 0 16px; }
      .mc-header { margin-bottom: 18px; }

      .mc-eyebrow {
        font-size: 0.9rem;
        padding: 9px 18px;
        margin-bottom: 16px;
        gap: 8px;
        font-weight: 800;
      }
      .mc-eyebrow-dot { width: 9px; height: 9px; }

      .mc-title {
        font-size: 2.15rem;
        line-height: 1.3;
        letter-spacing: -0.3px;
        margin-bottom: 14px;
        font-weight: 900;
      }

      .mc-desc {
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 22px;
        padding: 0 2px;
        font-weight: 600;
        color: #334155;
      }

      .mc-scene-wrap {
        margin-bottom: 10px;
        overflow: hidden;
        border-radius: 14px;
      }
      .mc-scene-svg {
        border-radius: 14px;
        width: 100%;
        height: auto;
        display: block;
        min-height: 200px;
      }

      .mc-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin-bottom: 24px;
        width: 100%;
      }
      .mc-btn-or {
        width: 30px;
        height: 30px;
        margin: 0 -1px;
        font-size: 0.75rem;
        font-weight: 800;
        flex-shrink: 0;
        z-index: 2;
      }
      .mc-btn {
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
        padding: 14px 12px;
        font-size: 0.95rem;
        font-weight: 800;
        white-space: nowrap;
      }
      .mc-btn-primary {
        border-radius: 50px 0 0 50px !important;
        padding-right: 14px;
        padding-left: 16px;
        box-shadow: 0 8px 22px rgba(249,115,22,0.35);
      }
      .mc-btn-wa {
        border-radius: 0 50px 50px 0 !important;
        border: 1.5px solid #e2e8f0;
        border-right: 1.5px solid #e2e8f0;
        padding-left: 14px;
        padding-right: 16px;
      }
      .mc-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

      .mc-location-cta { margin: 14px 0 10px; }
      .mc-btn-loc {
        padding: 15px 22px;
        font-size: 1.05rem;
        font-weight: 800;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }

      .mc-features { margin-top: 16px; }
      .mc-features-grid {
        gap: 12px;
        padding-top: 26px;
      }
      .mc-feat {
        padding: 22px 12px 18px;
        border-radius: 18px;
        animation: none;
      }
      .mc-feat:hover { transform: translateY(-6px); }
      .mc-feat-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 12px;
        border-radius: 14px;
      }
      .mc-feat-icon svg { width: 26px; height: 26px; }
      .mc-feat h4 {
        font-size: 1.08rem;
        margin-bottom: 6px;
        font-weight: 800;
      }
      .mc-feat p {
        font-size: 0.95rem;
        line-height: 1.45;
        font-weight: 600;
        color: #64748b;
      }

      .mc-form-row { grid-template-columns: 1fr; }
      .mc-modal { border-radius: 22px; max-width: 100%; }
      .mc-modal-top { padding: 22px 18px 18px; border-radius: 22px 22px 0 0; }
      .mc-modal-top h3 { font-size: 1.28rem; font-weight: 800; }
      .mc-modal-top p { font-size: 0.98rem; }
      .mc-modal-body { padding: 18px 18px 22px; }
      .mc-form-group label { font-size: 0.98rem; font-weight: 800; }
      .mc-input { font-size: 1.05rem; padding: 15px 14px; font-weight: 600; }
      .mc-submit { font-size: 1.1rem; padding: 17px; font-weight: 800; }
      .mc-loc-btn { font-size: 1.02rem; padding: 15px; font-weight: 800; }
    }

    @media (max-width: 400px) {
      .mc-title { font-size: 1.9rem; }
      .mc-desc { font-size: 1.08rem; }
      .mc-eyebrow { font-size: 0.85rem; }
      .mc-btn { font-size: 0.88rem; padding: 13px 10px; }
      .mc-btn-or { width: 28px; height: 28px; font-size: 0.7rem; }
      .mc-btn-loc { font-size: 0.98rem; padding: 13px 16px; }
      .mc-features-grid { gap: 10px; }
      .mc-feat { padding: 18px 10px 16px; border-radius: 16px; }
      .mc-feat h4 { font-size: 1.02rem; }
      .mc-feat p { font-size: 0.9rem; }
      .mc-feat-icon { width: 50px; height: 50px; }
      .mc-feat-icon svg { width: 24px; height: 24px; }
    }
