.testimonials-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: #f6f8fb;
}

.testimonials-hero {
    background: linear-gradient(135deg, #2d5a2a 0%, #488444 30%, #5fa65a 60%, #488444 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 2.5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge::before {
    content: '⭐';
    display: inline-block;
    margin-right: 0.5rem;
    animation: rotateStar 3s ease-in-out infinite;
    filter: brightness(1.3) saturate(1.5);
}

@keyframes rotateStar {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.testimonials-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.highlight-brand {
    background: #fbbf24;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.testimonials-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.testimonials-container {
    max-width: 1400px;
    margin: 1rem auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.stats-banner {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(72, 132, 68, 0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-banner {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-banner {
        margin-bottom: 0.75rem;
        padding: 1rem;
    }
}

.stat-item {
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(72, 132, 68, 0.05);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #488444 0%, #5fa65a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.category-filter {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(72, 132, 68, 0.1);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
}

.filter-btn:hover {
    border-color: #488444;
    color: #488444;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #488444 0%, #5fa65a 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(72, 132, 68, 0.3);
}

.submit-testimonial-banner-inline {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #488444 0%, #5fa65a 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin: 1rem 0;
    box-shadow: 0 15px 50px rgba(72, 132, 68, 0.25);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.submit-testimonial-banner-inline.loaded {
    opacity: 1;
    transform: translateY(0);
}

.submit-testimonial-banner-inline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.submit-testimonial-banner-inline .banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.submit-testimonial-banner-inline .banner-icon {
    font-size: 3.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.submit-testimonial-banner-inline .banner-text {
    flex: 1;
}

.submit-testimonial-banner-inline .banner-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}

.submit-testimonial-banner-inline .banner-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.submit-testimonial-banner-inline .submit-btn {
    background: white;
    color: #488444;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.submit-testimonial-banner-inline .submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.submit-testimonial-banner {
    background: linear-gradient(135deg, #488444 0%, #5fa65a 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin: 3rem auto;
    box-shadow: 0 15px 50px rgba(72, 132, 68, 0.25);
    position: relative;
    overflow: hidden;
}

.submit-testimonial-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.banner-icon {
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.submit-btn {
    background: white;
    color: #488444;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.business-features {
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 1.5rem auto;
    border: 2px solid #e8f5e9;
    box-shadow: 0 10px 30px rgba(72, 132, 68, 0.08);
}

.features-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #488444;
    margin-bottom: 2rem;
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #488444 0%, #5fa65a 100%);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #488444;
    box-shadow: 0 8px 25px rgba(72, 132, 68, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
}

.section-header {
    text-align: center;
    margin: 2rem auto 3rem;
    position: relative;
}

.heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.deco-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent 0%, #488444 50%, transparent 100%);
    animation: lineExpand 2s ease-in-out infinite;
}

.deco-line.left {
    background: linear-gradient(90deg, transparent 0%, #488444 100%);
}

.deco-line.right {
    background: linear-gradient(90deg, #488444 0%, transparent 100%);
}

.deco-icon {
    font-size: 2rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #488444 0%, #5fa65a 50%, #488444 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease infinite;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #488444 20%, #5fa65a 50%, #488444 80%, transparent 100%);
    border-radius: 2px;
    animation: underlineExpand 2s ease-in-out infinite;
}

.section-title::after {
    content: 'âœ¨';
    position: absolute;
    right: -40px;
    top: -10px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out;
}

@keyframes lineExpand {
    0%, 100% {
        width: 100px;
        opacity: 0.5;
    }
    50% {
        width: 150px;
        opacity: 1;
    }
}

@keyframes rotateStar {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes underlineExpand {
    0%, 100% {
        width: 150px;
        opacity: 0.6;
    }
    50% {
        width: 220px;
        opacity: 1;
        box-shadow: 0 0 20px rgba(72, 132, 68, 0.5);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-counter {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(72, 132, 68, 0.1);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #488444, #5fa65a);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(72, 132, 68, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.customer-role {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.customer-location {
    font-size: 0.85rem;
    color: #94a3b8;
}

.rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.stars {
    font-size: 1.3rem;
    color: #fbbf24;
    letter-spacing: 2px;
}

.category-tag {
    background: rgba(72, 132, 68, 0.1);
    color: #488444;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #334155;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    flex-grow: 1;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: rgba(72, 132, 68, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
}

.review-date {
    color: #94a3b8;
    font-weight: 500;
}

.verified {
    color: #488444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results h3 {
    font-size: 1.8rem;
    color: #488444;
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1.1rem;
    color: #64748b;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.pagination-button {
    background: white;
    border: 2px solid #488444;
    color: #488444;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 45px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.pagination-button:hover:not(:disabled) {
    background: #488444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(72, 132, 68, 0.3);
}

.pagination-button.active {
    background: linear-gradient(135deg, #2d5a2a 0%, #488444 50%, #5fa65a 100%);
    color: white;
    border-color: #2d5a2a;
    box-shadow: 0 4px 15px rgba(72, 132, 68, 0.4);
}

.pagination-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.pagination-ellipsis {
    color: #64748b;
    font-weight: 600;
    padding: 0 0.5rem;
}

.pagination-info {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 1rem;
    font-weight: 500;
}

.testimonials-cta {
    background: linear-gradient(135deg, #2d5a2a 0%, #488444 50%, #5fa65a 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-cta h2 {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.cta-buttons .btn-primary {
    background: white !important;
    background-color: white !important;
    color: #488444 !important;
    border: 2px solid white !important;
}

.cta-buttons .btn-primary:hover {
    background: white !important;
    background-color: white !important;
    color: #488444 !important;
    border: 2px solid white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
}

.cta-buttons .btn-primary:active,
.cta-buttons .btn-primary:focus,
.cta-buttons .btn-primary:visited {
    background: white !important;
    background-color: white !important;
    color: #488444 !important;
    border: 2px solid white !important;
}

.cta-buttons .btn-outline {
    background: transparent !important;
    background-color: transparent !important;
    color: white !important;
    border: 2px solid white !important;
}

.cta-buttons .btn-outline:hover {
    background: white !important;
    background-color: white !important;
    color: #488444 !important;
    border: 2px solid white !important;
    transform: translateY(-3px) !important;
}

.cta-buttons .btn-outline:active,
.cta-buttons .btn-outline:focus,
.cta-buttons .btn-outline:visited {
    background: white !important;
    background-color: white !important;
    color: #488444 !important;
    border: 2px solid white !important;
}

@media (max-width: 1024px) {
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials-hero h1 {
        font-size: 2.8rem;
    }

    .testimonials-cta h2 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-title::before {
        width: 120px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .submit-testimonial-banner {
        padding: 2rem;
    }

    .banner-content {
        gap: 1.5rem;
    }

    .banner-text h3 {
        font-size: 1.5rem;
    }

    .banner-text p {
        font-size: 1rem;
    }


    .submit-testimonial-banner-inline {
        padding: 1.8rem 2rem;
    }

    .submit-testimonial-banner-inline .banner-icon {
        font-size: 3rem;
    }

    .submit-testimonial-banner-inline .banner-text h3 {
        font-size: 1.4rem;
    }

    .submit-testimonial-banner-inline .banner-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .testimonials-hero {
        padding: 3rem 1.5rem 2.5rem;
    }

    .testimonials-hero h1 {
        font-size: 2.2rem;
    }

    .testimonials-hero p {
        font-size: 1.1rem;
    }

    .testimonials-container {
        padding: 0 1.5rem;
        margin-top: -2rem;
    }

    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }

    .stat-item {
        padding: 0.6rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .avatar {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .customer-name {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .testimonials-cta {
        padding: 3rem 1.5rem;
    }

    .testimonials-cta h2 {
        font-size: 2rem;
    }

    .testimonials-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .section-title::before {
        width: 100px;
        bottom: -12px;
    }

    .section-title::after {
        right: -30px;
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin: 1.5rem auto 2rem;
    }

    .heading-decoration {
        gap: 0.5rem;
    }

    .deco-line {
        width: 60px;
    }

    .deco-icon {
        font-size: 1.5rem;
    }


    .submit-testimonial-banner {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .banner-icon {
        font-size: 3rem;
    }

    .banner-text h3 {
        font-size: 1.3rem;
    }

    .banner-text p {
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }


    .submit-testimonial-banner-inline {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .submit-testimonial-banner-inline .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .submit-testimonial-banner-inline .banner-icon {
        font-size: 2.5rem;
    }

    .submit-testimonial-banner-inline .banner-text h3 {
        font-size: 1.2rem;
    }

    .submit-testimonial-banner-inline .banner-text p {
        font-size: 0.9rem;
    }

    .submit-testimonial-banner-inline .submit-btn {
        padding: 0.85rem 1.4rem;
        font-size: 0.95rem;
        width: 100%;
    }


    .business-features {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .features-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-item {
        flex-direction: row;
        justify-content: center;
        padding: 0.75rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-hero h1 {
        font-size: 1.8rem;
    }

    .testimonials-hero p {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
    }

    .customer-info {
        text-align: center;
    }

    .testimonials-cta h2 {
        font-size: 1.6rem;
    }

    .testimonials-cta p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .section-title::before {
        width: 80px;
        bottom: -10px;
        height: 3px;
    }

    .section-title::after {
        right: -25px;
        top: -8px;
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }

    .section-header {
        margin: 1rem auto 1.5rem;
    }

    .heading-decoration {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .deco-line {
        width: 40px;
    }

    .deco-icon {
        font-size: 1.3rem;
    }


    .banner-icon {
        font-size: 2.5rem;
    }

    .banner-text h3 {
        font-size: 1.2rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }


    .submit-testimonial-banner-inline {
        padding: 1.2rem;
    }

    .submit-testimonial-banner-inline .banner-icon {
        font-size: 2.2rem;
    }

    .submit-testimonial-banner-inline .banner-text h3 {
        font-size: 1.1rem;
    }

    .submit-testimonial-banner-inline .banner-text p {
        font-size: 0.85rem;
    }

    .submit-testimonial-banner-inline .submit-btn {
        padding: 0.75rem 1.1rem;
        font-size: 0.9rem;
    }


    .features-title {
        font-size: 1.2rem;
    }

    .business-features {
        padding: 1.2rem;
        margin: 0.75rem auto;
    }

    .features-grid {
        gap: 0.5rem;
    }

    .feature-item {
        padding: 0.6rem;
    }

    .feature-icon {
        font-size: 1.8rem;
    }

    .feature-text {
        font-size: 0.85rem;
    }
}

.testimonials-cta a.btn-primary,
.testimonials-cta a.btn-outline,
.testimonials-wrapper a.btn-primary,
.testimonials-wrapper a.btn-outline {
    text-decoration: none !important;
}

.testimonials-cta .cta-buttons a.btn-primary,
.testimonials-wrapper .cta-buttons a.btn-primary {
    background: white !important;
    background-color: white !important;
    color: #488444 !important;
    border: 2px solid white !important;
}

.testimonials-cta .cta-buttons a.btn-primary:hover,
.testimonials-cta .cta-buttons a.btn-primary:active,
.testimonials-cta .cta-buttons a.btn-primary:focus,
.testimonials-cta .cta-buttons a.btn-primary:visited,
.testimonials-wrapper .cta-buttons a.btn-primary:hover,
.testimonials-wrapper .cta-buttons a.btn-primary:active,
.testimonials-wrapper .cta-buttons a.btn-primary:focus,
.testimonials-wrapper .cta-buttons a.btn-primary:visited {
    background: white !important;
    background-color: white !important;
    color: #488444 !important;
    border: 2px solid white !important;
}

.testimonials-cta .cta-buttons a.btn-outline,
.testimonials-wrapper .cta-buttons a.btn-outline {
    background: transparent !important;
    background-color: transparent !important;
    color: white !important;
    border: 2px solid white !important;
}

.testimonials-cta .cta-buttons a.btn-outline:hover,
.testimonials-wrapper .cta-buttons a.btn-outline:hover {
    background: white !important;
    background-color: white !important;
    color: #488444 !important;
    border: 2px solid white !important;
}