/* Bot Pages Styling */

/* Hero Section */
#chefbot-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 160px 0 140px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
}

.benefit-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* ChefBot Showcase */
.chefbot-showcase {
    text-align: center;
    position: relative;
}

.bot-avatar {
    font-size: 8rem;
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.voice-waves {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.wave {
    width: 4px;
    height: 20px;
    background: white;
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
    opacity: 0.7;
}

.wave:nth-child(2) {
    animation-delay: 0.2s;
}

.wave:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

/* ROI Calculator */
.roi-calculator-widget {
    background: #f8f9ff;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
}

.calculator-inputs .input-group {
    margin-bottom: 20px;
}

.calculator-inputs label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #374151;
}

.calculator-inputs .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.calculator-inputs .form-control:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.roi-results {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.result-label {
    font-weight: 600;
    color: #6b7280;
}

.result-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #059669;
}

.result-value.total {
    color: #667eea;
    font-size: 1.4rem;
}

.result-value.roi {
    color: #dc2626;
    font-size: 1.4rem;
}

/* Feature Boxes */
.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-box h4 {
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    padding: 8px 0;
    color: #059669;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Metrics Cards */
.metric-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.metric-desc {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
}

.case-study-header {
    margin-bottom: 20px;
}

.case-study-header h4 {
    color: #1f2937;
    margin-bottom: 5px;
}

.location {
    color: #6b7280;
    font-weight: 600;
}

.case-study-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.case-study-metrics .metric {
    text-align: center;
}

.case-study-metrics .value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #059669;
}

.case-study-metrics .label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.case-study-quote {
    font-style: italic;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.case-study-author {
    color: #667eea;
    font-weight: 700;
}

/* Implementation Steps */
.implementation-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.implementation-step h4 {
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.implementation-step p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-timeline {
    background: #f3f4f6;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.pricing-header h4 {
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

.pricing-header p {
    color: #6b7280;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9ff;
}

.faq-question h5 {
    margin: 0;
    color: #1f2937;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    width: 30px;
    text-align: center;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-note {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-benefits {
        justify-content: center;
    }
    
    .benefit-item {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .bot-avatar {
        width: 150px;
        height: 150px;
        font-size: 6rem;
    }
    
    .case-study-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .roi-calculator-widget {
        padding: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}