   /* --- Section Wrapper --- */
  .reviews-chat-section{
    direction: rtl;
     
    padding: 40px 16px;
    color: var(--text);
    position: relative;
    overflow: hidden;
    font-family: "Almarai", Tahoma, Arial, sans-serif;
  }

  .reviews-chat-section .wrap{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 22px;
    align-items: center;
  }

  @media (max-width: 980px){
    .reviews-chat-section .wrap{
      grid-template-columns: 1fr;
      gap: 18px;
    }
  }

  /* --- Left copy (optional) --- */
  .reviews-chat-copy{
    padding: 12px 6px;
  }

  .reviews-chat-copy h2{
    margin: 0 0 10px 0;
    font-size: 28px;
    color: var(--primary);
    letter-spacing: .2px;
  }

  .reviews-chat-copy p{
    margin: 0;
    line-height: 1.9;
    font-size: 15px;
    color: rgba(61,61,61,.9);
  }

  .reviews-chat-copy .pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(6px);
    margin-bottom: 14px;
    font-size: 13px;
    color: rgba(61,61,61,.85);
  }

  .reviews-chat-copy .dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(214,174,107,.18);
  }

  /* --- Phone --- */
  .phone{
    width: 100%;
    max-width: 290px;
    margin-inline-start: auto;
    margin-inline-end: 0;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));
    border: 1px solid rgba(229,231,235,.95);
    box-shadow:
      0 20px 60px rgba(28,45,68,.18),
      0 2px  12px rgba(0,0,0,.06);
    overflow: hidden;
    position: relative;
  }

  .phone::before{
    content:"";
    position:absolute;
    inset: 10px;
    border-radius: 26px;
    border: 1px solid rgba(214,174,107,.25);
    pointer-events:none;
  }

  .phone-top{
    padding: 14px 16px 12px 16px;
    background: linear-gradient(180deg, rgba(28,45,68,.92), rgba(28,45,68,.84));
    color: #fff;
    position: relative;
  }

  .phone-top .topbar{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand-chip{
    display:flex;
    align-items:center;
    gap: 10px;
    min-width: 0;
  }

  .bubble-icon{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    background: rgba(214,174,107,.18);
    border: 1px solid rgba(214,174,107,.35);
  }

  .brand-text{
    min-width:0;
  }
  .brand-text .title{
    font-size: 13px;
    margin: 0;
    font-weight: 700;
    letter-spacing:.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-text .sub{
 font-size: 11px;
  margin: 0px 7px 0 0;
  color: rgb(255, 255, 255);
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  }

  .top-actions{
    display:flex;
    gap: 8px;
    align-items:center;
  }

  .top-actions .mini{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
    border: 1px solid rgba(255,255,255,.18);
  }

  .phone-body{
    padding: 14px 14px 10px 14px;
    background:
      radial-gradient(600px 380px at 85% 0%, rgba(214,174,107,.16), transparent 55%),
      radial-gradient(520px 340px at 10% 110%, rgba(28,45,68,.10), transparent 60%),
      #fbfbfb;
  }

  .chat{
    height: 420px;
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(229,231,235,.95);
    overflow: hidden;
    position: relative;
  }

  .chat .scroll{
    height: 100%;
    overflow-y: auto;
    padding: 14px 12px 16px 12px;
    scroll-behavior: smooth;
  }

  /* Hide scrollbar (optional) */
  .chat .scroll::-webkit-scrollbar { width: 6px; }
  .chat .scroll::-webkit-scrollbar-thumb { background: rgba(28,45,68,.15); border-radius: 10px; }
  .chat .scroll::-webkit-scrollbar-track { background: transparent; }

  .msg{
    display:flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
    opacity: 0;
    transform: translateY(12px);
    animation: msgIn .55s ease forwards;
  }

  @keyframes msgIn{
    to { opacity: 1; transform: translateY(0); }
  }

  .bubble{
    max-width: 88%;
    padding: 12px 12px;
    border-radius: 18px;
    line-height: 1.9;
    font-size: 14px;
    border: 1px solid rgba(229,231,235,.9);
    position: relative;
    background: #fff;
    color: var(--text);
    box-shadow: 0 10px 22px rgba(0,0,0,.06);
    word-break: break-word;
	text-align:right
  }

  .meta{
    font-size: 11px;
    color: rgba(61,61,61,.65);
    display:flex;
    align-items:center;
    gap: 6px;
  }

  .meta .tag{
    display:inline-flex;
    align-items:center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(214,174,107,.10);
    border: 1px solid rgba(214,174,107,.22); 
  }

  .meta .tick{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
  }

  /* right aligned (client) */
  .msg.client{
    align-items: flex-end;
  }
  .msg.client .bubble{
    border-top-right-radius: 6px;
  }

  /* left aligned (firm) - optional if you want replies */
  .msg.firm{
    align-items: flex-start;
  }
  .msg.firm .bubble{
    background: rgba(28,45,68,.06);
    border-color: rgba(28,45,68,.12);
    border-top-left-radius: 6px;
  }

  /* subtle divider */
  .divider{
    margin: 12px auto;
    width: 64%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(28,45,68,.14), transparent);
  }

  .phone-bottom{
    padding: 10px 14px 14px 14px;
    background: rgba(255,255,255,.78);
    border-top: 1px solid rgba(229,231,235,.9);
    display:flex;
    gap: 10px;
    align-items:center;
  }

  .hint{
    flex: 1;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(229,231,235,.95);
    background: #fff;
    display:flex;
    align-items:center;
    padding: 0 14px;
    color: rgba(61,61,61,.55);
    font-size: 13px;
  }

  .send{
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(214,174,107,.35);
    background: rgba(214,174,107,.14);
    display:grid;
    place-items:center;
    cursor: default;
  }

  .send svg{ opacity:.9; }
  
  .chatShell[data-dir="rtl"] .msg.client { align-items: flex-end; }
.chatShell[data-dir="ltr"] .msg.client { align-items: flex-start; }

.chatShell[data-dir="rtl"] .msg.client .bubble { border-top-right-radius: 6px; }
.chatShell[data-dir="ltr"] .msg.client .bubble { border-top-left-radius: 6px; }
