/* ========================================
   PRICING SECTION STYLES
   ======================================== */

.pricing-section {
    padding: 6rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.pricing-section__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pricing-section__subtitle {
    font-size: 0.875rem;
    color: #25D366;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.pricing-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-section__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.1);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.pricing-card--featured {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
    position: relative;
}

.pricing-card--featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #1ea952);
}

.pricing-card__badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #25D366;
    color: #000;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[dir="rtl"] .pricing-card__badge {
    left: auto;
    right: 2rem;
}

/* Card Header */
.pricing-card__header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.pricing-card__icon svg {
    width: 32px;
    height: 32px;
    color: #25D366;
}

.pricing-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pricing-card__subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Card Price */
.pricing-card__price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.pricing-card__amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
}

.pricing-card__currency {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-right: 0.5rem;
}

[dir="rtl"] .pricing-card__currency {
    margin-right: 0;
    margin-left: 0.5rem;
}

.pricing-card__price--custom .pricing-card__amount {
    font-size: 1.5rem;
}

/* Card Features */
.pricing-card__features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.pricing-feature__icon {
    width: 20px;
    height: 20px;
    color: #25D366;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Card CTA */
.pricing-card__cta {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pricing-card__cta:hover {
    background: #25D366;
    border-color: #25D366;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.pricing-card__cta svg {
    width: 20px;
    height: 20px;
}

.pricing-card__cta--featured {
    background: #25D366;
    border-color: #25D366;
    color: #000;
}

.pricing-card__cta--featured:hover {
    background: #1ea952;
    border-color: #1ea952;
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

/* Bottom CTA */
.pricing-bottom-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.pricing-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #25D366, transparent);
}

.pricing-bottom-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-bottom-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: #25D366;
    color: #000;
    font-weight: 700;
    font-size: 1.0625rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-custom-btn:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.pricing-custom-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 767px) {
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-section__title {
        font-size: 1.875rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card__amount {
        font-size: 2.25rem;
    }

    .pricing-bottom-cta {
        padding: 2rem 1.5rem;
    }

    .pricing-bottom-cta h3 {
        font-size: 1.375rem;
    }
}

/* ========================================
   TESTIMONIALS SECTION STYLES
   ======================================== */

.testimonials-section {
    padding: 6rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.testimonials-section__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonials-section__subtitle {
    font-size: 0.875rem;
    color: #25D366;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.testimonials-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-section__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Card Header */
.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(37, 211, 102, 0.3);
    flex-shrink: 0;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info {
    flex: 1;
}

.testimonial-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.testimonial-card__position {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Card Rating */
.testimonial-card__rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

/* Card Quote */
.testimonial-card__quote {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card__quote p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card__quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(37, 211, 102, 0.1);
    position: absolute;
    top: -1.5rem;
    right: 0;
    font-family: Georgia, serif;
    line-height: 1;
}

[dir="rtl"] .testimonial-card__quote::before {
    right: auto;
    left: 0;
}

/* Card Project */
.testimonial-card__project {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.project-icon {
    width: 16px;
    height: 16px;
    color: #25D366;
}

/* Stats Section */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonials-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonials-stat {
    text-align: center;
}

.testimonials-stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #25D366;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.testimonials-stat__suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: #25D366;
    display: inline-block;
    margin-right: 0.25rem;
}

[dir="rtl"] .testimonials-stat__suffix {
    margin-right: 0;
    margin-left: 0.25rem;
}

.testimonials-stat__label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.testimonials-stat__stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.testimonials-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #25D366, transparent);
}

.testimonials-cta__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.testimonials-cta__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.testimonials-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: #25D366;
    color: #000;
    font-weight: 700;
    font-size: 1.0625rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.testimonials-cta__btn:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.testimonials-cta__btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-section__title {
        font-size: 1.875rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonials-stats {
        padding: 2rem 1.5rem;
    }

    .testimonials-stat__number {
        font-size: 2rem;
    }

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

    .testimonials-cta__title {
        font-size: 1.375rem;
    }
}
