
/* ============================================
   PREMIUM TESTIMONIALS & BLOG STYLES
   ============================================ */
.premium-testimonials-section {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ff2d55;
    transform: translateY(-10px);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #ff2d55;
}

.testimonial-user h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.testimonial-user span {
    font-size: 13px;
    color: #94a3b8;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    font-style: italic;
}

.premium-blog-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.premium-blog-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    height: 100%;
}

.premium-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.blog-img-box {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.premium-blog-card:hover .blog-img-box img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    font-size: 12px;
    font-weight: 700;
    color: #ff2d55;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.read-more-btn {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}
