/**
 * AI Chatbot Product Page Styles
 * Template-compatible styles
 */

/* Service Feature Sections */
.services-main {
    padding: 4rem 0;
}

.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-feature:last-child {
    margin-bottom: 0;
}

.service-feature--reverse {
    direction: rtl;
}

.service-feature--reverse > * {
    direction: ltr;
}

.service-feature__image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-feature__content {
    max-width: 600px;
}

.service-feature__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-feature__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.service-feature__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.service-feature__description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-feature__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-feature__list li {
    padding: 0.75rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.service-feature__list i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .service-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .service-feature--reverse {
        direction: ltr;
    }
    
    .service-feature__image {
        height: 300px;
    }
    
    .service-feature__content {
        max-width: 100%;
    }
    
    .service-feature__title {
        font-size: 1.75rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card--featured {
    border-color: #10b981;
    position: relative;
}

.pricing-card__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #3b82f6;
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-card__badge--featured {
    background: #10b981;
}

.pricing-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.pricing-card__price {
    margin-bottom: 0.5rem;
}

.pricing-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
}

.pricing-card__period {
    font-size: 0.875rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.pricing-card__monthly {
    font-size: 1.25rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1.5rem;
}

.pricing-card__description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-card__features li {
    padding: 0.75rem 0;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-card__features i {
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.cta-card {
    text-align: center;
    color: white;
}

.cta-card__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-card__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-card__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-card__actions .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cta-card__actions .btn-primary {
    background: white;
    color: #1e3a8a;
    border: none;
}

.cta-card__actions .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.cta-card__actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-card__actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-card__note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card__title {
        font-size: 2rem;
    }
    
    .cta-card__subtitle {
        font-size: 1.125rem;
    }
    
    .cta-card__actions {
        flex-direction: column;
    }
    
    .cta-card__actions .btn {
        width: 100%;
    }
}
