/* ==================================================================
   showcase.css - premium travel showcase section (Default.aspx)
   Loaded after Style.css; extends the .dp-* component system with the
   section chrome, location pill, rating row, guest favourite ribbon
   and the scroll-reveal animation.
   ================================================================== */
.dp-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f9fd 0%, #eaf4fa 55%, #fbfdff 100%);
}

/* soft blue glow behind the heading */
.dp-showcase::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    z-index: 0;
    width: 640px;
    height: 300px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(11, 108, 180, .16), rgba(11, 108, 180, 0));
    pointer-events: none;
}

.dp-showcase > .container {
    position: relative;
    z-index: 1;
}

/* elegant display-serif heading for the showcase */
.dp-showcase .dp-title {
    font-family: 'Abril Fatface', serif;
    font-weight: 400;
    letter-spacing: .01em;
}

/* blue eyebrow chip variant of the festive .dp-chip */
.dp-chip--blue {
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    box-shadow: 0 10px 22px -12px rgba(11, 108, 180, .95);
}

/* location pill, top-right of the photo */
.dp-place {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .75rem;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background-color: rgba(3, 41, 70, .55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: .76rem;
    font-weight: 600;
}

/* guest favourite ribbon: same shape as .dp-ribbon, brand blue */
.dp-ribbon--fav {
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    box-shadow: 0 10px 22px -12px rgba(11, 108, 180, .95);
}

/* traveller rating row under the package name */
.dp-rating {
    display: flex;
    align-items: center;
    gap: .12rem;
    margin: 0 0 .65rem;
    color: #5b6c7a;
    font-family: 'Work Sans', sans-serif;
    font-size: .8rem;
    font-weight: 600;
}

.dp-rating i {
    color: #f5b301;
    font-size: .82rem;
}

.dp-rating span {
    margin-left: .35rem;
}

/* gentle arrow slide on the primary call to action */
.dp-btn--primary i {
    transition: transform .25s ease;
}

.dp-btn--primary:hover i,
.dp-btn--primary:focus i {
    transform: translateX(3px);
}

/* scroll reveal: cards fade and rise gently, one row at a time */
.dp-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.dp-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* stagger the columns inside each grid row */
.dp-reveal:nth-child(3n + 2) {
    transition-delay: .1s;
}

.dp-reveal:nth-child(3n + 3) {
    transition-delay: .2s;
}

@media (max-width: 575.98px) {
    .dp-place {
        top: 10px;
        right: 10px;
        padding: .28rem .6rem;
        font-size: .7rem;
    }

    .dp-ribbon--fav {
        top: 10px;
        left: 10px;
        padding: .28rem .6rem;
        font-size: .62rem;
    }

    .dp-showcase .dp-title {
        font-size: 1.42rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .dp-btn--primary i {
        transition: none;
    }

    .dp-btn--primary:hover i,
    .dp-btn--primary:focus i {
        transform: none;
    }
}

/* ===== trekking showcase variant (Default.aspx .dp-showcase--trek) ===== */
/* deep pine-to-summit gradient instead of the coastal blue wash */
.dp-showcase--trek {
    background: linear-gradient(180deg, #eef7f0 0%, #e3f2ec 55%, #fbfdff 100%);
}

.dp-showcase--trek::before {
    background: radial-gradient(closest-side, rgba(23, 122, 76, .14), rgba(23, 122, 76, 0));
}

/* green "Himalayan Adventures" chip */
.dp-chip--green {
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    box-shadow: 0 10px 22px -12px rgba(21, 122, 76, .95);
}

/* green guest-favourite ribbon, same shape as the blue one */
.dp-showcase--trek .dp-ribbon--fav {
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    box-shadow: 0 10px 22px -12px rgba(21, 122, 76, .95);
}

/* camp-fire colour for the highlight check icons */
.dp-showcase--trek .dp-hl i {
    color: #0b6cb4;
}

/* altitude pill in camp-forest tones */
.dp-showcase--trek .dp-days {
    background-color: rgba(8, 46, 28, .62);
}

/* ==================================================================
   Top-Rated Travel Destinations (Default.aspx .dp-dest)
   Editorial image grid: glassy number chip, nickname pill, smooth
   hover-lift with image zoom and an unfolding description.
   Reuses .dp-chip / .dp-title / .dp-sub / .dp-reveal from above.
   ================================================================== */
.dp-dest {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f9fd 0%, #eaf4fa 55%, #fbfdff 100%);
}

/* soft teal glow behind the heading */
.dp-dest::before {
    content: '';
    position: absolute;
    top: -140px;
    left: 50%;
    z-index: 0;
    width: 720px;
    height: 320px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(140, 198, 63, .15), rgba(140, 198, 63, 0));
    pointer-events: none;
}

.dp-dest > .container {
    position: relative;
    z-index: 1;
}

.dp-dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.dp-dest-card {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    border-radius: 18px;
    background: #06233c; /* brand navy, visible while the photo loads */
    text-decoration: none;
    box-shadow: 0 16px 34px -26px rgba(3, 41, 70, .9);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease;
}

.dp-dest-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

/* keeps the caption readable on every photo */
.dp-dest-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 22, 38, .05) 30%, rgba(4, 22, 38, .55) 68%, rgba(4, 22, 38, .92) 100%);
    pointer-events: none;
}

/* glassy index chip, top-left */
.dp-dest-no {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: .3rem .68rem;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    background-color: rgba(3, 41, 70, .42);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.dp-dest-info {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 1.1rem 1.25rem 1.15rem;
    color: #fff;
    font-family: 'Work Sans', sans-serif;
}

.dp-dest-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .26rem .65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.dp-dest-info h3 {
    margin: .55rem 0 .2rem;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: .01em;
}

/* the description unfolds smoothly on hover / keyboard focus */
.dp-dest-info p {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    font-size: .84rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .86);
    transition: opacity .45s ease, transform .45s ease, max-height .45s ease;
}

.dp-dest-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: .1rem;
    color: #fbbf24;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dp-dest-link i {
    transition: transform .3s ease;
}

/* hover / focus polish */
.dp-dest-card:hover,
.dp-dest-card:focus-visible {
    transform: translateY(-7px);
    box-shadow: 0 30px 52px -28px rgba(3, 41, 70, .95);
}

.dp-dest-card:hover img,
.dp-dest-card:focus-visible img {
    transform: scale(1.08);
}

.dp-dest-card:hover .dp-dest-info p,
.dp-dest-card:focus-visible .dp-dest-info p {
    max-height: 5rem;
    opacity: 1;
    transform: none;
}

.dp-dest-card:hover .dp-dest-link i,
.dp-dest-card:focus-visible .dp-dest-link i {
    transform: translateX(4px);
}

.dp-dest-card:focus-visible {
    outline: 3px solid #0b6cb4;
    outline-offset: 3px;
}

@media (max-width: 991.98px) {
    .dp-dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }

    .dp-dest-card {
        height: 260px;
    }
}

@media (max-width: 639.98px) {
    .dp-dest-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dp-dest-card {
        height: 240px;
    }

    .dp-dest-info {
        padding: .95rem 1.05rem 1rem;
    }

    .dp-dest-info h3 {
        font-size: 1.15rem;
    }
}

/* touch devices have no hover: keep the description visible */
@media (hover: none) {
    .dp-dest-info p {
        max-height: 5rem;
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dp-dest-card,
    .dp-dest-card img,
    .dp-dest-info p,
    .dp-dest-link i {
        transition: none;
    }

    .dp-dest-card:hover,
    .dp-dest-card:focus-visible {
        transform: none;
    }

    .dp-dest-card:hover img,
    .dp-dest-card:focus-visible img {
        transform: none;
    }
}

/* Newsletter band styles moved to newsletter.css (linked from Default.aspx).
   Keeping this placeholder so old .dp-news markup never renders unstyled. */

/* ==================================================================
   FAQ section (Default.aspx .dp-faq) - premium two-column layout on a
   clean light canvas: intro + CTA on the left, elegant numbered
   accordion cards on the right. Brand accents #0b6cb4 / #8cc63f.
   ================================================================== */
.dp-faq {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5rem;
    background:
        radial-gradient(900px 420px at 8% 0%, rgba(140, 198, 63, .07), transparent 60%),
        radial-gradient(760px 420px at 100% 100%, rgba(11, 108, 180, .07), transparent 60%),
        linear-gradient(180deg, #fbfdff 0%, #f2f8fc 100%);
}

.dp-faq__wrap {
    position: relative;
    z-index: 1;
}

/* ---- decorative travel shapes (clipped to the FAQ band) ----------- */
.dp-faq__deco {
    position: absolute;
    z-index: 0;
    max-width: 35vw;
    pointer-events: none;
}

.dp-faq__deco--ring {
    top: -60px;
    left: -70px;
    width: 190px;
    height: 190px;
    border: 2px dashed rgba(11, 108, 180, .18);
    border-radius: 50%;
}

.dp-faq__deco--dot {
    bottom: 6%;
    left: 40%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(142, 204, 54, .16) 0 2px, transparent 2.5px);
    background-size: 18px 18px;
    border-radius: 50%;
}

.dp-faq__deco--plane {
    top: 12%;
    right: 3%;
    color: rgba(11, 108, 180, .16);
    font-size: 2rem;
    transform: rotate(-18deg);
}

.dp-faq__deco--pin {
    bottom: 10%;
    right: 6%;
    color: rgba(140, 198, 63, .2);
    font-size: 1.7rem;
    transform: rotate(14deg);
}

/* ---- left column: intro ------------------------------------------ */
.dp-faq__intro {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.dp-faq__title {
    margin: 1.1rem 0 .8rem;
    font-family: 'Abril Fatface', serif;
    font-weight: 400;
    color: #0d3a5c;
}

.dp-faq__title span {
    color: #0b6cb4;
}

.dp-faq__sub {
    max-width: 460px;
    color: #52697c;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

/* small travel-themed icon tiles */
.dp-faq__visual {
    display: flex;
    gap: .8rem;
    margin: 1.6rem 0 1.8rem;
}

.dp-faq__vicon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(11, 108, 180, .18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 24px -16px rgba(2, 24, 42, .55);
    color: #0b6cb4;
    font-size: 1.1rem;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.dp-faq__vicon:nth-child(2) { color: #8cc63f; }
.dp-faq__vicon:nth-child(3) { color: #7cb62c; }
.dp-faq__vicon:nth-child(4) { color: #0b6cb4; }

.dp-faq__vicon:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    color: #fff !important;
}

/* CTA card */
.dp-faq__btn {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    padding: .9rem 1.3rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    box-shadow: 0 18px 34px -18px rgba(11, 108, 180, .9);
    color: #fff;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.dp-faq__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 42px -18px rgba(11, 108, 180, 1);
    color: #fff;
}

.dp-faq__btn > i.fa-headset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: 1.05rem;
}

.dp-faq__btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.dp-faq__btn small {
    color: rgba(255, 255, 255, .8);
    font-family: 'Work Sans', sans-serif;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dp-faq__btn strong {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
}

.dp-faq__btn-arrow {
    margin-left: .4rem;
    transition: transform .3s ease;
}

.dp-faq__btn:hover .dp-faq__btn-arrow {
    transform: translateX(5px);
}

.dp-faq__note {
    margin: .9rem 0 0;
    color: #6b8299;
    font-family: 'Work Sans', sans-serif;
    font-size: .84rem;
}

.dp-faq__note i {
    margin-right: .35rem;
    color: #7cb62c;
}

/* ---- right column: accordion cards -------------------------------- */
/* legacy Style.css sets .accordion { width:80% !important; margin-left:85px !important }
   for the old site-wide FAQ — neutralize it for this premium layout.
   Extra specificity + !important wins over Style.css and the minified
   bootstrap file (Style/bootsatrp.css) on Default.aspx. */
.dp-faq div.dp-faq__list.accordion,
.dp-faq .accordion.dp-faq__list,
.dp-faq .accordion#accordionExample,
div.dp-faq__list.accordion {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.dp-faq__list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.9rem !important;
}

.dp-faq .dp-faq-item,
div.accordion-item.dp-faq-item {
    margin: 0 !important;
    border: 1px solid rgba(11, 108, 180, .14) !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 14px 30px -22px rgba(2, 24, 42, .45) !important;
    overflow: hidden !important;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease !important;
}

.dp-faq-item:hover {
    border-color: rgba(140, 198, 63, .45);
    box-shadow: 0 20px 40px -22px rgba(11, 108, 180, .5);
    transform: translateY(-2px);
}

/* active (open) card gets a subtle premium highlight */
.dp-faq-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(11, 108, 180, .35);
    background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
    box-shadow: 0 22px 44px -22px rgba(11, 108, 180, .55);
}

.dp-faq-item .accordion-header {
    margin: 0;
}

.dp-faq button.dp-faq-q.accordion-button,
.dp-faq .dp-faq-q {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    width: 100% !important;
    padding: 1.15rem 1.4rem !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 18px 18px 0 0 !important;
    color: #0d3a5c !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 1.02rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    box-shadow: none !important;
}

/* kill Bootstrap default caret, draw a premium round chevron */
.dp-faq-q::after {
    display: none !important;
    content: none !important;
}

.dp-faq-q .dp-faq-n {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 2.4rem !important;
    height: 2.4rem !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, rgba(11, 108, 180, .12), rgba(140, 198, 63, .12)) !important;
    border: 1px solid rgba(11, 108, 180, .2) !important;
    color: #0b6cb4 !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: .82rem !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    transition: background .3s ease, color .3s ease, transform .3s ease !important;
}

/* question text must wrap cleanly between badge and chevron */
.dp-faq-q .dp-faq-t {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

/* round chevron bubble appended via the flex order */
.dp-faq button.dp-faq-q.accordion-button::before,
.dp-faq .dp-faq-q::before {
    order: 9 !important;
    content: "\f078" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    width: 2.1rem !important;
    height: 2.1rem !important;
    border-radius: 50% !important;
    background: rgba(140, 198, 63, .1) !important;
    color: #8cc63f !important;
    font-size: .72rem !important;
    opacity: 1 !important;
    transition: transform .35s ease, background .3s ease, color .3s ease !important;
}

.dp-faq-q:focus {
    box-shadow: 0 0 0 3px rgba(140, 198, 63, .25);
}

.dp-faq-q:not(.collapsed) {
    color: #0b6cb4;
    background: transparent;
    box-shadow: none;
}

.dp-faq-q:not(.collapsed) .dp-faq-n {
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    border-color: transparent;
    color: #fff;
    transform: scale(1.05);
}

.dp-faq-q:not(.collapsed)::before {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    color: #fff;
}

.dp-faq .dp-faq-a.accordion-body,
.dp-faq .dp-faq-a {
    padding: 0 1.4rem 1.3rem 4.8rem !important;
    color: #52697c !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: .95rem !important;
    line-height: 1.75 !important;
    background: transparent !important;
}

.dp-faq-a p {
    margin: 0;
}

@media (max-width: 991.98px) {
    .dp-faq__sub {
        max-width: 560px;
    }

    .dp-faq__visual {
        margin: 1.3rem 0 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .dp-faq {
        padding: 3.2rem 0 3.6rem;
    }

    .dp-faq button.dp-faq-q.accordion-button,
    .dp-faq .dp-faq-q {
        gap: .8rem !important;
        padding: .95rem 1rem !important;
        font-size: .93rem !important;
    }

    .dp-faq .dp-faq-q .dp-faq-n,
    .dp-faq-n {
        width: 2rem !important;
        height: 2rem !important;
        border-radius: 10px !important;
        font-size: .74rem !important;
    }

    .dp-faq .dp-faq-q::before {
        width: 1.8rem !important;
        height: 1.8rem !important;
        font-size: .64rem !important;
    }

    .dp-faq .dp-faq-a.accordion-body,
    .dp-faq .dp-faq-a,
    .dp-faq-a {
        padding: 0 1rem 1.1rem 1rem !important;
        font-size: .9rem !important;
    }

    .dp-faq__deco--plane {
        font-size: 1.5rem;
    }

    .dp-faq__deco--pin {
        font-size: 1.3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dp-faq-item,
    .dp-faq-q::before,
    .dp-faq__btn,
    .dp-faq__vicon,
    .dp-faq__btn-arrow {
        transition: none;
    }
}

/* ==================================================================
   What Our Travellers Say (Default.aspx .dp-testi)
   Premium testimonial carousel: soft glass cards, brand-blue accents,
   round nav buttons, dot indicators, Google trust badge.
   ================================================================== */
.dp-testi {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfdff 0%, #eef6fb 50%, #f4f9fd 100%);
}

.dp-testi::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    z-index: 0;
    width: 700px;
    height: 340px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(140, 198, 63, .13), rgba(140, 198, 63, 0));
    pointer-events: none;
}

.dp-testi .container {
    position: relative;
    z-index: 1;
}

/* glassmorphism testimonial card */
.dp-testi-card {
    position: relative;
    height: 100%;
    padding: 2.4rem 1.8rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .55));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px -28px rgba(3, 41, 70, .55);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.dp-testi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 108, 180, .25);
    box-shadow: 0 30px 55px -30px rgba(3, 41, 70, .6);
}

/* big translucent brand quote mark */
.dp-testi-quote {
    position: absolute;
    top: 1.1rem;
    right: 1.4rem;
    font-size: 2.3rem;
    color: rgba(11, 108, 180, .12);
}

.dp-testi-stars {
    display: flex;
    gap: .18rem;
    margin-bottom: .9rem;
    color: #f5b301;
    font-size: .88rem;
}

.dp-testi-text {
    margin: 0 0 1.3rem;
    color: #3d5265;
    font-family: 'Work Sans', sans-serif;
    font-size: .93rem;
    line-height: 1.75;
    /* keep long reviews tidy: no card blow-outs */
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dp-testi-who {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(11, 108, 180, .12);
}

.dp-testi-who img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px -10px rgba(3, 41, 70, .6);
}

.dp-testi-who h3 {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #053b63;
}

.dp-testi-who span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .15rem;
    color: #6a7d8c;
    font-family: 'Work Sans', sans-serif;
    font-size: .76rem;
    font-weight: 600;
}

.dp-testi-who span i {
    color: #0b6cb4;
}

/* nav row: round buttons + dot indicators, centred under the cards */
.dp-testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 1.6rem;
}

.dp-testi-btn {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(11, 108, 180, .25);
    border-radius: 50%;
    background: #fff;
    color: #0b6cb4;
    font-size: .8rem;
    box-shadow: 0 10px 22px -14px rgba(3, 41, 70, .7);
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.dp-testi-btn:hover,
.dp-testi-btn:focus {
    background: linear-gradient(135deg, #0b6cb4, #8cc63f);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* flat overlay carousel indicators, restyled as brand dots */
.dp-testi-dots {
    position: static;
    display: flex;
    margin: 0;
}

.dp-testi-dots [data-bs-slide-to] {
    width: 9px;
    height: 9px;
    margin: 0 4px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(11, 108, 180, .25);
    transition: background-color .3s ease, width .3s ease;
}

.dp-testi-dots .active {
    width: 26px;
    background-color: #0b6cb4;
}

.dp-testi-badge {
    margin-top: 1.6rem;
}

.dp-testi-badge img {
    border-radius: 12px;
    transition: transform .3s ease;
}

.dp-testi-badge a:hover img {
    transform: translateY(-3px);
}

@media (max-width: 575.98px) {
    .dp-testi-card {
        padding: 2.1rem 1.2rem 1.3rem;
        border-radius: 16px;
    }

    .dp-testi-text {
        font-size: .88rem;
    }

    .dp-testi-btn {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dp-testi-card,
    .dp-testi-btn,
    .dp-testi-badge img {
        transition: none;
    }

    .dp-testi-card:hover,
    .dp-testi-btn:hover {
        transform: none;
    }
}
