
    /* ----- TESTIMONIAL SECTION STYLES ----- */
    .testimonial-luxury {
        background: rgb(254, 236, 239);
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }
    
    /* Header section with title and button */
    .testimonial-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #f0e2da;
    }
    
    .testimonial-title h3 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0.25rem;
    }
    
    .testimonial-title p {
      font-size: 0.85rem;
      color: black;
      margin: 0;
    }
    
    .write-review-btn-header {
      background: black;
      border: none;
      padding: 0.7rem 1.5rem;
      border-radius: 0;
      font-weight: 600;
      font-size: 0.85rem;
      color: white;
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(148, 147, 147, 0.2);
    }
        .write-review-btn-header:hover {
            border: 1px solid black;
            background: #eeeded ;
            color: black !important;
        }
    
    
    /* Stats Card */
    .nab-stats-card {
      background: #fff5f2;
      border-radius: 0;
      box-shadow: none;
      border: 1px solid #f0e2da;
      height: 100%;
    }
    
    .nab-brand-name {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(145deg, #b45a3b, #8e3e22);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 0.75rem;
    }
    
    .nab-stars-large {
      color: #f5b342;
      font-size: 1.3rem;
      letter-spacing: 3px;
    }
    
    .nab-reviews-count {
      background: #ffffff;
      display: inline-block;
      padding: 0.3rem 1rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: #b45a3b;
      border: 1px solid #f0e2da;
    }
    
    /* Testimonial Cards */
    .nab-testimonial-card {
      background: #ffffff;
      padding: 1.3rem;
      border: 1px solid #f0e2da;
      transition: all 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .nab-testimonial-card:hover {
      border-color: #e6cfc0;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }
    
    .nab-avatar img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }
    
    .nab-name-line {
      font-weight: 700;
      font-size: 1rem;
      color: #1a1a1a;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    
    .nab-review-date {
      font-size: 0.7rem;
      color: #dcc9bc;
    }
    
    .nab-stars-small {
      color: #f5b342;
      font-size: 0.85rem;
      margin-right: 1px;
    }
    
    .nab-review-text {
      font-size: 0.88rem;
      line-height: 1.45;
      color: #4b3b32;
      font-weight: 500;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    /* DESKTOP CAROUSEL - 3 cards visible at a time */
    .desktop-testimonial-carousel {
      position: relative;
    }
    
    .desktop-carousel-inner {
      overflow: hidden;
    }
    
    .desktop-carousel-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 1.5rem;
    }
    
    .desktop-carousel-slide {
      flex: 0 0 calc(33.333% - 1rem);
      min-width: calc(33.333% - 1rem);
    }
    
    .desktop-nav {
      display: flex;
      justify-content: flex-end;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }
    
    .desktop-nav-btn {
      width: 42px;
      height: 42px;
      background: white;
      border: 1px solid #e8dbd2;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      color: #8b6f5e;
    }
    
    .desktop-nav-btn:hover {
      background: #fff5f2;
      border-color: #c7a18b;
      color: pink;
    }
    
    .desktop-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }
    
    .desktop-dot {
      width: 8px;
      height: 8px;
      background: #dcc9bc;
      cursor: pointer;
      transition: all 0.2s;
    }
    
    .desktop-dot.active {
      background: pink;
      width: 24px;
    }
    
    /* MOBILE SLIDER - 1 card visible at a time */
    .mobile-testimonial-slider {
      display: none;
    }
    
    .mobile-slider-container {
      position: relative;
      overflow: hidden;
    }
    
    .mobile-slider-track {
      display: flex;
      transition: transform 0.4s ease;
      gap: 1rem;
    }
    
    .mobile-slide {
      flex: 0 0 100%;
    }
    
    .mobile-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .mobile-nav-btn {
      width: 40px;
      height: 40px;
      background: white;
      border: 1px solid #e8dbd2;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      color: #8b6f5e;
    }
    
    .mobile-nav-btn:hover {
      background: #fff5f2;
      border-color: #c7a18b;
      color: black;
    }
    
    .mobile-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    
    .mobile-dot {
      width: 6px;
      height: 6px;
      background: #dcc9bc;
      cursor: pointer;
      transition: all 0.2s;
    }
    
    .mobile-dot.active {
      background: black;
      width: 20px;
    }
    
   
    
    /* Responsive */
    @media (max-width: 992px) {
      .desktop-testimonial-carousel {
        display: none;
      }
      .mobile-testimonial-slider {
        display: block;
      }
      .testimonial-header {
        flex-direction: column;
        gap: 1rem;

      }
    }
    
    @media (max-width: 768px) {
      .testimonial-title h3 {
        font-size: 1.4rem;
      }
    }