 /* TESTIMONIALS SECTION */
 .sp-hero-pin{
    position: relative;
    height: calc(450px + 45vh); /* 45vh = مساحة السكرول الإضافية = مقدار التراكب اللي عايزه */
  }
  
  .sp-hero {
    position: fixed;
    top: 0;
    z-index: 1;
    padding: 110px 0 20px;
    overflow: hidden;
    width: 100%;
  }
  
  .testimonials{
    position: relative;
    z-index: 2;
    background: #f2f1ee;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: 0;
    padding: 70px 40px 100px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.86);
  }
  /* احذف التعريف الثاني المكرر بالكامل */
  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .sp-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: end;
  }
  .sp-hero h1 {
    font-size: clamp(34px, 4.6vw, 58px);
    color: #fff;
  }
  .serif-italic {
    font-style: italic;
    font-weight: 400;
    color: #ddd;
  }
  .sp-hero p {
    margin-top: 20px;
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 520px;
  }
  .mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    /* background: var(--line-soft); */
    border: 0px solid var(--line-soft);
    /* border-radius: 20px; */
    overflow: hidden;
  }
  .mini-stats div {
    /* background: var(--paper-raised); */
    padding: 0;
  }
  .mini-stats .num {
    font-family: "Fraunces", serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
  }
  .mini-stats .lbl {
    margin-top: 4px !important;
    font-family: var(--Font-2) !important;
    font-size: 14px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #fff !important;
  }

  .badge{
    display:inline-block;
    border:1px solid #0b6e63;
    color:var(--orange);
    background:#fff;
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.5px;
    padding:5px 12px;
    border-radius:20px;
    margin-bottom:18px;
  }
  h1{
    font-size:34px;
    font-weight:800;
    color:#0b1220;
    margin-bottom:48px;
  }

  .grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
    text-align:right;
    direction:ltr;
  }
  .card{
    background:var(--card-bg);
    border-radius:16px;
    padding:26px 26px 22px;
    box-shadow:0 1px 3px rgba(0,0,0,0.04);
    text-align:left;background: #fff;
  }
  .quote-icon{
    width:26px;height:20px;
    color:var(--gray-300, #d1d5db);
    margin-bottom:14px;
    opacity:0.55;
  }
  .quote-text{
    font-size:14px;
    line-height:1.7;
    color:#374151;
    margin-bottom:22px;
  }
  .quote-text .highlight{
    color:var(--orange);
    font-weight:600;
  }
  .divider{
    border:none;
    border-top:1px solid var(--gray-100);
    margin-bottom:18px;
  }
  .person{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .avatar{
    width:40px;height:40px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
  }
  .person-name{
    font-size:14px;
    font-weight:700;
    color:#0b1220;
  }
  .person-handle{
    font-size:12.5px;
    color:var(--gray-400);
  }

  @media(max-width:900px){
    .grid{ grid-template-columns:1fr; }
    .navbar{ padding:16px 24px; }
    .nav-links{ display:none; }
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================
   CARD
========================================= */

.testimonial-card {
    position: relative;

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.22, 1, .36, 1);
}


/*
 * Reviews after the first 6
 */
.testimonial-card.testimonial-hidden {
    display: none;
}


/*
 * Animation when new reviews appear
 */
.testimonial-card.testimonial-show {
    display: block;

    opacity: 0;
    transform: translateY(60px);

    animation: testimonialReveal 0.8s
        cubic-bezier(.22, 1, .36, 1)
        forwards;
}


@keyframes testimonialReveal {

    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   QUOTE
========================================= */

.testimonial-card .quote-icon {
    width: 32px;
    height: 24px;
    margin-bottom: 24px;
}

.testimonial-card .quote-text {
    margin: 0;
    line-height: 1.7;
}


/* =========================================
   STARS
========================================= */

.testimonial-card .review-stars {
    margin-top: 18px;
  font-size: 21px;
  letter-spacing: 2px;
  color: #e5c101;
}


/* =========================================
   DIVIDER
========================================= */

.testimonial-card .divider {
    margin: 24px 0;

    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


/* =========================================
   PERSON
========================================= */

.testimonial-card .person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    object-fit: cover;
    flex-shrink: 0;
}


/* Initials */
.testimonial-card .avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    font-size: 15px;

    background: #0a251f;
    color: #f2f1ee;
}


.testimonial-card .person-name {
    font-weight: 600;
    line-height: 1.3;
}

.testimonial-card .person-handle {
    margin-top: 4px;

    font-size: 13px;
    opacity: 0.55;
}


/* =========================================
   LOADER / OBSERVER
========================================= */

.testimonials-loader {
    width: 100%;
    height: 1px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .sp-hero-grid{grid-template-columns: 1fr;}
    .wrap{background-position: left !important;}
    .wrap:lang(ar){background-position: right !important;}
    .testimonials{padding: 30px 20px 50px;}
    .testimonials h1{font-size: 28px;}
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}