/* Pricing Section */
.pricing-section {
    padding: 0px 0;
}

.pricing-section .item {
    max-width: 1170px;
    width: 94%;
    margin: 0 auto;
}

.pricing-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #222;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-4px) scale(1.05);
}

.pricing-header {
    margin-bottom: 16px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-price {
    margin-bottom: 16px;
}

.price-amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.price-period {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.pricing-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.pricing-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #222;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--surface);
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #222;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.testimonials-grid {
    padding: 0 20px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin: 0 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #384252;
    font-style: italic;
    margin: 0;
    padding: 0 0 0 14px;
    border-left: 3px solid rgba(0, 100, 200, 0.25);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #222;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.rating {
    color: #ffc107;
    font-size: 14px;
}

/* Testimonials Slick Carousel Styles */
.testimonials-grid.slick-slider {
    margin-bottom: 40px;
}

.testimonials-grid .slick-dots {
    bottom: -50px;
}

.testimonials-grid .slick-dots li {
    margin: 0 4px;
}

.testimonials-grid .slick-dots li button:before {
    color: var(--accent);
    font-size: 12px;
}

.testimonials-grid .slick-dots li.slick-active button:before {
    color: var(--accent);
    opacity: 1;
}

.testimonials-grid .slick-arrow {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.testimonials-grid .slick-arrow:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.testimonials-grid .slick-arrow:before {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
}

.testimonials-grid .slick-prev {
    left: 10px;
}

.testimonials-grid .slick-prev:before {
    content: '‹';
}

.testimonials-grid .slick-next {
    right: 10px;
}

.testimonials-grid .slick-next:before {
    content: '›';
}

@media (max-width: 768px) {
    .testimonials-grid .slick-prev {
        left: 4px;
    }
    
    .testimonials-grid .slick-next {
        right: 4px;
    }
    
    .testimonials-grid .slick-arrow {
        width: 40px;
        height: 40px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #222;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--surface);
    margin: 0 0px 24px;
    border-radius: 8px;
}

.faq-answer p {
    padding: 24px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .floating-cta::after {
        content: none;
    }
    .floating-cta-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .floating-cta-media,
    .floating-cta-badge {
        display: none;
    }

    .floating-cta-title {
        color: #222;
        font-size: 17px;
    }

    .floating-cta-subtitle {
        color: #666;
    }

    .floating-cta-button {
        width: 100%;
        padding: 12px 18px;
        font-size: 14px;
        background: var(--accent);
        color: #ffffff;
        box-shadow: none;
    }
}

/* CTA Subtitle */
.cta-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    text-align: center;
}

/* Review Rating System */
.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-date {
    color: #6b7280;
    font-size: 13px;
}

.review-meta .review-date { order: 1; }
.review-meta .review-toggle { order: 2; }
.review-meta .review-overall-rating { order: 3; margin-left: auto; }

.review-overall-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-overall-rating .rating-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.review-overall-rating .rating-stars {
    color: #ffc107;
    font-size: 16px;
}

.review-ratings {
    margin-bottom: 16px;
    padding: 12px;
    background: var(--surface);
    border-radius: 10px;
    display: none; /* hidden by default for a cleaner card */
}

/* Reveal when explicitly opened */
.review-ratings.is-open {
    display: block;
}

.review-rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.review-rating-item:last-child {
    margin-bottom: 0;
}

.rating-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.rating-value-display {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    min-width: 20px;
    text-align: right;
}

.rating-stars-small {
    color: #ffc107;
    font-size: 12px;
}

.review-content-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
}

.review-response {
    margin-top: 14px;
    padding: 12px;
    background: rgba(0, 100, 200, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
}

.review-response-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-response-text {
    font-size: 14px;
    line-height: 1.55;
    color: #4b5563;
}

/* Toggle button for details */
.review-toggle {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
}

.review-toggle:hover {
    text-decoration: underline;
}

/* Rating icons fallback */
.rating-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 2px;
}

/* Star rating utility classes */
.stars-1:before { content: "★☆☆☆☆"; }
.stars-2:before { content: "★★☆☆☆"; }
.stars-3:before { content: "★★★☆☆"; }
.stars-4:before { content: "★★★★☆"; }
.stars-5:before { content: "★★★★★"; }
