/* ============================================================
   🔒 FULLY SCOPED — .tstPro prefix on every rule
   Enhanced design · Pure CSS marquee · No void space
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

.tstPro *,
.tstPro *::before,
.tstPro *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ══════════════════════════════
   CSS VARIABLES
══════════════════════════════ */
.tstPro {
    --gold:    #d6a63a;
    --gold2:   #f0d080;
    --orange:  #ff8c00;
    --dark:    #1a1030;
    --navy:    #0e0b2e;
    --text:    #111;
    --muted:   rgba(17,17,17,.68);
    --card-bg: rgba(255,255,255,0.96);
    --border:  rgba(214,166,58,.18);
}

/* ══════════════════════════════
   SECTION
══════════════════════════════ */
.tstPro {
    padding: clamp(48px, 6vw, 68px) clamp(16px, 4vw, 40px);
    background:
        radial-gradient(ellipse at 8% 10%,  rgba(255,140,0,.08),  transparent 50%),
        radial-gradient(ellipse at 92% 88%, rgba(214,166,58,.10), transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(255,240,210,.4), transparent 70%),
        linear-gradient(160deg, #fff8f0 0%, #fff 40%, #fffaf4 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* ── shimmer top border ── */
.tstPro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent);
    background-size: 200% 100%;
    animation: tstShimBar 3.5s linear infinite;
}

/* ── bottom border ── */
.tstPro::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,140,0,0.15), transparent);
}

/* ── floating orbs ── */
.tstPro .tstPro__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.tstPro .tstPro__orb-1 {
    width: clamp(180px,25vw,340px);
    height: clamp(180px,25vw,340px);
    background: radial-gradient(circle, rgba(255,140,0,.07), transparent 70%);
    top: -50px; right: -50px;
    animation: tstOrbDrift 12s ease-in-out infinite alternate;
}
.tstPro .tstPro__orb-2 {
    width: clamp(140px,18vw,260px);
    height: clamp(140px,18vw,260px);
    background: radial-gradient(circle, rgba(214,166,58,.09), transparent 70%);
    bottom: -30px; left: -30px;
    animation: tstOrbDrift 9s ease-in-out 3s infinite alternate-reverse;
}

/* ── dot texture ── */
.tstPro .tstPro__dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,180,50,.3) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.35;
    animation: tstDotsDrift 25s linear infinite;
}

/* ══════════════════════════════
   CONTAINER
══════════════════════════════ */
.tstPro .tstPro__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.tstPro .tstPro__head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 40px);
}

/* eyebrow */
.tstPro .tstPro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,140,0,.07);
    border: 1px solid rgba(255,140,0,.2);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c4780a;
    margin-bottom: 14px;
    animation: tstFadeUp .6s ease both;
}

.tstPro .tstPro__eyebrow-dot {
    width: 5px; height: 5px;
    background: var(--orange);
    border-radius: 50%;
    animation: tstBlink 2s ease-in-out infinite;
}

/* title */
.tstPro .tstPro__title {
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
    animation: tstFadeUp .65s ease .1s both;
}

.tstPro .tstPro__title span {
    background: linear-gradient(90deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: tstShimText 4s ease infinite;
    position: relative;
}

.tstPro .tstPro__title span::after {
    content: '';
    display: block;
    height: 4px;
    border-radius: 999px;
    width: min(200px, 60%);
    margin: 8px auto 0;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    animation: tstShimBar 3s linear infinite;
    background-size: 200% 100%;
}

/* subtitle */
.tstPro .tstPro__sub {
    max-width: 65ch;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(13px, 1.3vw, 16px);
    line-height: 1.7;
    animation: tstFadeUp .65s ease .2s both;
}

/* divider */
.tstPro .tstPro__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    animation: tstFadeUp .6s ease .25s both;
}
.tstPro .tstPro__div-line {
    height: 1px; width: 50px;
    background: linear-gradient(90deg, transparent, rgba(255,140,0,.4));
}
.tstPro .tstPro__div-line.r {
    background: linear-gradient(90deg, rgba(255,140,0,.4), transparent);
}
.tstPro .tstPro__div-icon {
    font-size: 16px;
    animation: tstSpin 8s linear infinite;
}

/* ══════════════════════════════
   SLIDER
══════════════════════════════ */
.tstPro .tstPro__slider {
    overflow: hidden;
    position: relative;
}

/* fade edges */
.tstPro .tstPro__slider::before,
.tstPro .tstPro__slider::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: clamp(40px, 6vw, 100px);
    z-index: 3;
    pointer-events: none;
}
.tstPro .tstPro__slider::before {
    left: 0;
    background: linear-gradient(to right, #fff8f0, transparent);
}
.tstPro .tstPro__slider::after {
    right: 0;
    background: linear-gradient(to left, #fffaf4, transparent);
}

/* track */
.tstPro .tstPro__track {
    display: flex;
    gap: clamp(14px, 1.8vw, 22px);
    will-change: transform;
    animation: tstMarquee 40s linear infinite;
}

/* pause on hover */
@media (hover: hover) {
    .tstPro .tstPro__slider:hover .tstPro__track {
        animation-play-state: paused;
    }
}

/* ══════════════════════════════
   CARD
══════════════════════════════ */
.tstPro .tstPro__card {
    flex: 0 0 clamp(280px, 30vw, 380px);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: clamp(18px, 2vw, 26px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    transition: transform .38s cubic-bezier(.22,1,.36,1), box-shadow .38s ease;
}

/* top gradient glow layer */
.tstPro .tstPro__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(400px 160px at 20% 0%, rgba(255,140,0,.07), transparent 65%),
        radial-gradient(300px 120px at 80% 100%, rgba(214,166,58,.06), transparent 65%);
    pointer-events: none;
    border-radius: 22px;
}

/* animated gold border on hover */
.tstPro .tstPro__card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--orange), var(--gold), var(--orange));
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s ease;
    animation: tstGradShift 3s ease infinite paused;
    pointer-events: none;
}

.tstPro .tstPro__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 32px 80px rgba(255,140,0,.18), 0 12px 30px rgba(0,0,0,.1);
}

.tstPro .tstPro__card:hover::after {
    opacity: 1;
    animation-play-state: running;
}

/* ── card top row ── */
.tstPro .tstPro__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
}

/* avatar */
.tstPro .tstPro__avatar {
    width: 54px; height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid rgba(214,166,58,.5);
    box-shadow: 0 0 0 4px rgba(255,140,0,.08);
    flex-shrink: 0;
    transition: transform .35s ease, box-shadow .35s ease;
}
.tstPro .tstPro__card:hover .tstPro__avatar {
    transform: scale(1.06);
    box-shadow: 0 0 0 6px rgba(255,140,0,.14);
}
.tstPro .tstPro__avatar img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* meta */
.tstPro .tstPro__meta { flex: 1; min-width: 0; }
.tstPro .tstPro__name {
    font-weight: 700;
    font-size: clamp(14px, 1.3vw, 16px);
    color: var(--dark);
    line-height: 1.2;
}
.tstPro .tstPro__loc {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* stars */
.tstPro .tstPro__stars {
    display: flex;
    gap: 2px;
    margin-top: 5px;
}
.tstPro .tstPro__star {
    font-size: 13px;
    color: rgba(17,17,17,.18);
    transition: transform .2s ease;
}
.tstPro .tstPro__star.on {
    color: var(--gold);
    text-shadow: 0 4px 12px rgba(214,166,58,.35);
}
.tstPro .tstPro__card:hover .tstPro__star.on {
    animation: tstStarBounce .5s ease both;
}
.tstPro .tstPro__card:hover .tstPro__star:nth-child(1) { animation-delay: .00s; }
.tstPro .tstPro__card:hover .tstPro__star:nth-child(2) { animation-delay: .05s; }
.tstPro .tstPro__card:hover .tstPro__star:nth-child(3) { animation-delay: .10s; }
.tstPro .tstPro__card:hover .tstPro__star:nth-child(4) { animation-delay: .15s; }
.tstPro .tstPro__card:hover .tstPro__star:nth-child(5) { animation-delay: .20s; }

/* verified badge */
.tstPro .tstPro__badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2a7a2a;
    background: rgba(42,122,42,.08);
    border: 1px solid rgba(42,122,42,.2);
    border-radius: 50px;
    padding: 3px 9px;
    flex-shrink: 0;
    align-self: flex-start;
}

/* quote line */
.tstPro .tstPro__text {
    font-size: clamp(13px, 1.1vw, 14.5px);
    color: var(--muted);
    line-height: 1.75;
    padding-top: 12px;
    border-top: 1px solid rgba(255,140,0,.1);
    position: relative;
}

/* large decorative quote mark */
.tstPro .tstPro__text::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(255,140,0,.1);
    position: absolute;
    top: 6px;
    left: -4px;
    pointer-events: none;
}

/* card footer */
.tstPro .tstPro__footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,140,0,.12);
}

.tstPro .tstPro__service {
    font-size: 11px;
    font-weight: 600;
    color: #c4780a;
    background: rgba(255,140,0,.07);
    border: 1px solid rgba(255,140,0,.15);
    border-radius: 50px;
    padding: 4px 12px;
}

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.tstPro .tstPro__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 20px);
    margin-top: clamp(26px, 3.5vw, 38px);
    padding: clamp(14px, 2vw, 20px) clamp(20px, 4vw, 40px);
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,140,0,.12);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 28px rgba(255,140,0,.08);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    animation: tstFadeUp .65s ease .4s both;
}

.tstPro .tstPro__trust-item {
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.tstPro .tstPro__trust-sep {
    color: rgba(255,140,0,.3);
    font-size: 14px;
}

/* ══════════════════════════════
   KEYFRAMES (tst- prefixed)
══════════════════════════════ */
@keyframes tstMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes tstShimBar {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}
@keyframes tstOrbDrift {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(16px,24px) scale(1.08); }
}
@keyframes tstDotsDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}
@keyframes tstFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes tstBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}
@keyframes tstShimText {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes tstGradShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes tstSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes tstStarBounce {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.35) translateY(-2px); }
    100% { transform: scale(1); }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
    .tstPro .tstPro__card {
        flex-basis: clamp(240px, 70vw, 320px);
    }
    .tstPro .tstPro__track {
        animation-duration: 34s;
    }
}

@media (max-width: 560px) {
    .tstPro .tstPro__card {
        flex-basis: clamp(260px, 85vw, 340px);
    }
    .tstPro .tstPro__track {
        animation-duration: 28s;
    }
    .tstPro .tstPro__trust {
        border-radius: 20px;
    }
    .tstPro .tstPro__trust-sep {
        display: none;
    }
    .tstPro .tstPro__trust {
        gap: 10px 16px;
    }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .tstPro .tstPro__track { animation: none !important; }
    .tstPro .tstPro__dots  { animation: none; }
}