/* ============================================================
   Homepage Testimonials + Featured Blog — Arusha Excursions
   ============================================================ */

/* ---------- Testimonials ---------- */
.hp-testimonials .splide__slide {
    height: auto;
    display: flex;
}

.hp-testimonial-card {
    background: #fff;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hp-testimonial-stars {
    color: #f4b400;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.hp-testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    flex: 1;
    margin-bottom: 1.25rem;
}

.hp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eef1f0;
    padding-top: 1rem;
}

.hp-testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.hp-testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--bs-primary);
}

.hp-testimonial-author span {
    display: block;
    font-size: 12px;
    color: #888;
}

/* ---------- Featured Blog cards ---------- */
.hp-blog-card {
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(13, 48, 52, 0.14);
    color: inherit;
}

.hp-blog-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hp-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hp-blog-card:hover .hp-blog-card-img img {
    transform: scale(1.05);
}

.hp-blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bs-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 999px;
}

.hp-blog-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hp-blog-meta {
    display: flex;
    gap: 6px;
    font-size: 12px;
    color: #8a9493;
    margin-bottom: 0.5rem;
}

.hp-blog-card-body h3 {
    margin-bottom: 0.5rem;
    color: var(--bs-primary);
}

.hp-blog-card-body p {
    font-size: 13.5px;
    color: #666;
    margin-bottom: 1rem;
    flex: 1;
}

.hp-blog-readmore {
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hp-blog-readmore .hicon {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.hp-blog-card:hover .hp-blog-readmore .hicon {
    transform: translateX(3px);
}

/* ---------- TripAdvisor CTA ---------- */
.hp-tripadvisor-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #34e0a1;
    color: #00302b;
    font-weight: 700;
    font-size: 14px;
    padding: 0.85rem 1.75rem;
    border-radius: 0.85rem;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 8px 20px rgba(52, 224, 161, 0.35);
}

.hp-tripadvisor-btn:hover {
    background: #22c98d;
    color: #00302b;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(52, 224, 161, 0.45);
}

.hp-tripadvisor-btn svg {
    flex-shrink: 0;
}
