/* ===== TESTIMONIALS PAGE STYLES (pg17) ===== */
.pg17 .testimonials-hero {
    padding: 100px 0 60px;
}

.pg17 .testimonials-hero .hero-lead {
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Plan Filter Tabs */
.pg17 .testimonials-filter-section {
    padding: 40px 0;
    background: var(--light-bg);
}

.pg17 .plan-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pg17 .plan-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--gray);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.pg17 .plan-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.pg17 .plan-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pg17 .plan-filter-btn i {
    font-size: 1.1rem;
}

/* Testimonials Grid */
.pg17 .testimonials-grid-section {
    padding: 80px 0;
}

.pg17 .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.pg17 .testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.pg17 .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 162, 60, 0.3);
}

.pg17 .testimonial-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 25px rgba(230, 162, 60, 0.15);
}

.pg17 .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(230, 162, 60, 0.3);
}

/* Testimonial Header */
.pg17 .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pg17 .testimonial-meta {
    flex: 1;
}

.pg17 .client-name {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.pg17 .plan-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.pg17 .plan-tag.basic-plan {
    background: rgba(30, 136, 229, 0.1);
    color: var(--premium-blue);
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.pg17 .plan-tag.advanced-plan {
    background: rgba(67, 160, 71, 0.1);
    color: var(--premium-green);
    border: 1px solid rgba(67, 160, 71, 0.2);
}

.pg17 .plan-tag.premium-plan {
    background: rgba(230, 162, 60, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(230, 162, 60, 0.2);
}

.pg17 .plan-tag.profit-plan {
    background: rgba(155, 81, 224, 0.1);
    color: #9b51e0;
    border: 1px solid rgba(155, 81, 224, 0.2);
}

.pg17 .plan-tag i {
    font-size: 0.9rem;
}

/* Rating */
.pg17 .testimonial-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.pg17 .stars {
    color: #f59e0b;
    display: flex;
    gap: 2px;
    font-size: 0.9rem;
}

.pg17 .half-star {
    color: #f59e0b;
    font-size: 0.8rem;
    font-weight: 700;
}

.pg17 .rating-score {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Testimonial Body */
.pg17 .testimonial-body {
    margin-bottom: 25px;
}

.pg17 .testimonial-quote {
    position: relative;
    margin-bottom: 20px;
}

.pg17 .testimonial-quote i.fa-quote-left {
    position: absolute;
    top: -8px;
    left: -5px;
    font-size: 1.8rem;
    color: rgba(230, 162, 60, 0.15);
    z-index: 1;
}

.pg17 .testimonial-quote p {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    margin: 0;
    padding-left: 25px;
}

.pg17 .testimonial-stats {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
    flex-wrap: wrap;
}

.pg17 .stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pg17 .stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.pg17 .stat-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
}

.pg17 .stat-value.positive {
    color: #82D32B;
}

/* Testimonial Footer */
.pg17 .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.pg17 .verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #82D32B;
    font-weight: 600;
}

.pg17 .verified-badge i {
    font-size: 0.9rem;
}

.pg17 .testimonial-date {
    color: var(--gray);
}

/* Load More Button */
.pg17 .load-more-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.pg17 .load-more-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Testimonials Stats */
.pg17 .testimonials-stats-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.pg17 .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pg17 .stats-grid .stat-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pg17 .stats-grid .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pg17 .stats-grid .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 162, 60, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color);
}

.pg17 .stats-grid .stat-content {
    flex: 1;
}

.pg17 .stats-grid .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.pg17 .stats-grid .stat-label {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.pg17 .testimonials-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #2a5a8c);
}

.pg17 .cta-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.pg17 .cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pg17 .cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.pg17 .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pg17 .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pg17 .plan-filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .pg17 .plan-filter-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .pg17 .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pg17 .cta-card {
        padding: 30px;
    }
    
    .pg17 .cta-content h2 {
        font-size: 2rem;
    }
    
    .pg17 .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pg17 .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .pg17 .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pg17 .testimonials-hero h1 {
        font-size: 2.2rem;
    }
    
    .pg17 .testimonial-card {
        padding: 25px;
    }
    
    .pg17 .testimonial-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .pg17 .testimonial-rating {
        align-items: flex-start;
    }
    
    .pg17 .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pg17 .plan-filter-btn span {
        display: none;
    }
    
    .pg17 .plan-filter-btn {
        padding: 12px;
        font-size: 1.2rem;
    }
    
    .pg17 .plan-filter-btn i {
        margin: 0;
    }
}

/* ===== Testimonials Hero Section (Missing Styles) ===== */
.pg17 .hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pg17 .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 162, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 136, 229, 0.05) 0%, transparent 50%);
    opacity: 0.7;
    z-index: 0;
}

.pg17 .hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pg17 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pg17 .hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.pg17 .profit-highlight {
    background: linear-gradient(135deg, #e6a23c 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.pg17 .hero-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.pg17 .hero-lead strong {
    color: #e6a23c;
    font-weight: 700;
}

.pg17 .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pg17 .hero-stat {
    text-align: center;
}

.pg17 .hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.pg17 .hero-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .pg17 .hero-stats {
        gap: 20px;
    }
    
    .pg17 .hero h1 {
        font-size: 2.4rem;
    }
    
    .pg17 .hero-lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .pg17 .hero h1 {
        font-size: 2rem;
    }
    
    .pg17 .hero-lead {
        font-size: 1rem;
    }
    
    .pg17 .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .pg17 .hero-stat .stat-number {
        font-size: 2rem;
    }
}