/* =========================================================
   AARAV DIGITAL — TESTIMONIALS / CLIENT SUCCESS STORIES
========================================================= */

.adp-testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08), transparent 32%),
        radial-gradient(circle at 85% 80%, rgba(212, 175, 55, 0.05), transparent 30%),
        #050505;
    color: #ffffff;
}

.adp-testimonials-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.adp-testimonials-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    top: 10%;
    left: -250px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.07);
    filter: blur(100px);
    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.adp-testimonials-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.adp-testimonials-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;

    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.adp-testimonials-eyebrow span {
    width: 28px;
    height: 1px;
    background: #d4af37;
    display: inline-block;
}

.adp-testimonials-header h2 {
    margin: 0;
    max-width: 700px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 700;
    color: #ffffff;
}

.adp-testimonials-header h2 strong {
    color: #d4af37;
    font-weight: 700;
}

.adp-testimonials-header > p {
    margin: 0 0 5px;
    max-width: 470px;

    color: #a9a9a9;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   TESTIMONIAL GRID
========================================================= */

.adp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.adp-testimonial-card {
    position: relative;
    min-height: 390px;
    padding: 30px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 22px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.adp-testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.65),
        transparent
    );

    opacity: 0.7;
}

.adp-testimonial-card:hover {
    transform: translateY(-8px);

    border-color: rgba(212, 175, 55, 0.42);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.5),
        0 0 35px rgba(212, 175, 55, 0.06);
}


/* =========================================================
   CLIENT TOP
========================================================= */

.adp-testimonial-top {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.adp-testimonial-avatar {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d4af37,
            #9d7920
        );

    color: #080808;
    font-size: 15px;
    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.18);
}

.adp-testimonial-client {
    min-width: 0;
}

.adp-testimonial-client h3 {
    margin: 0 0 4px;

    color: #ffffff;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

.adp-testimonial-client span {
    display: block;

    color: #888888;
    font-size: 12px;
    line-height: 1.4;
}

.adp-testimonial-stars {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 1px;
    white-space: nowrap;
}


/* =========================================================
   QUOTE
========================================================= */

.adp-testimonial-quote {
    margin-top: 32px;
    margin-bottom: -4px;

    color: #d4af37;
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 0.7;

    opacity: 0.75;
}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.adp-testimonial-text {
    margin: 18px 0 30px;

    color: #b7b7b7;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   RESULT
========================================================= */

.adp-testimonial-result {
    margin-top: auto;
    padding-top: 20px;

    display: flex;
    align-items: center;
    gap: 12px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.adp-testimonial-result span {
    flex-shrink: 0;

    padding: 6px 9px;

    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 6px;

    color: #d4af37;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.adp-testimonial-result strong {
    color: #eeeeee;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   TRUST BAR
========================================================= */

.adp-testimonials-trust {
    margin-top: 55px;
    padding: 25px 30px;

    display: grid;
    grid-template-columns: auto 1px auto 1px auto 1px minmax(230px, 1fr);
    align-items: center;
    gap: 28px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 18px;
}

.adp-testimonials-trust-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.adp-testimonials-trust-item strong {
    color: #d4af37;
    font-size: 25px;
    line-height: 1;
}

.adp-testimonials-trust-item span {
    color: #777777;
    font-size: 11px;
    white-space: nowrap;
}

.adp-testimonials-trust-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
}

.adp-testimonials-rating {
    margin-left: auto;
    text-align: right;
}

.adp-testimonials-rating div {
    margin-bottom: 5px;

    color: #d4af37;
    font-size: 14px;
    letter-spacing: 2px;
}

.adp-testimonials-rating span {
    color: #777777;
    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .adp-testimonials-section {
        padding: 90px 0;
    }

    .adp-testimonials-header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .adp-testimonials-header > p {
        max-width: 650px;
    }

    .adp-testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .adp-testimonial-card:last-child {
        grid-column: 1 / -1;
    }

    .adp-testimonials-trust {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .adp-testimonials-rating {
        grid-column: 1 / -1;
        margin: 5px 0 0;
        padding-top: 20px;
        text-align: left;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .adp-testimonials-trust-divider {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .adp-testimonials-section {
        padding: 75px 0;
    }

    .adp-testimonials-container {
        width: min(100% - 30px, 520px);
    }

    .adp-testimonials-header {
        margin-bottom: 38px;
    }

    .adp-testimonials-header h2 {
        font-size: 40px;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .adp-testimonials-header > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .adp-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .adp-testimonial-card {
        min-height: auto;
        padding: 24px;
        border-radius: 18px;
    }

    .adp-testimonial-card:last-child {
        grid-column: auto;
    }

    .adp-testimonial-top {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .adp-testimonial-avatar {
        width: 48px;
        height: 48px;
    }

    .adp-testimonial-stars {
        grid-column: 2;
        margin-top: -8px;
    }

    .adp-testimonial-quote {
        margin-top: 28px;
        font-size: 50px;
    }

    .adp-testimonial-text {
        font-size: 18px;
        line-height: 1.75;
    }

    .adp-testimonial-result {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .adp-testimonials-trust {
        grid-template-columns: 1fr 1fr;
        padding: 22px;
        gap: 22px;
    }

    .adp-testimonials-trust-item strong {
        font-size: 26px;
    }

    .adp-testimonials-trust-item span {
        white-space: normal;
        line-height: 1.4;
    }

    .adp-testimonials-rating {
        grid-column: 1 / -1;
    }
}