﻿/* Styles for Restaurant System Page */
.restaurant-system {
    font-family: 'Shabnam', sans-serif;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    color: white;
    line-height: 1.3;
}

.hero-img {
    position: relative;
    z-index: 2;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features-section {
    background-color: #fff;
    position: relative;
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    margin-top: 10px;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.restaurant-feature-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

    .restaurant-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .restaurant-feature-card .feature-content h3 {
        color: #2c3e50;
        margin: 20px 0 15px;
        font-size: 1.3rem;
    }

    .restaurant-feature-card .feature-content p {
        color: #7f8c8d;
        line-height: 1.8;
    }

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

    .icon-box i {
        font-size: 30px;
        color: white;
    }

.bg-primary {
    background: #3498db;
}

.bg-success {
    background: #2ecc71;
}

.bg-info {
    background: #1abc9c;
}

.bg-warning {
    background: #f39c12;
}

.bg-danger {
    background: #e74c3c;
}

.bg-purple {
    background: #9b59b6;
}

/* Process Section */
.process-section {
    position: relative;
}

.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        background: linear-gradient(to bottom, #3498db, #2ecc71);
        z-index: 1;
    }

.process-step {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .process-step:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    margin-left: 20px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.step-content {
    flex-grow: 1;
}

    .step-content h3 {
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .step-content p {
        color: #7f8c8d;
        line-height: 1.7;
    }

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
}

.benefits-content h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-icon {
    font-size: 24px;
    margin-left: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-text h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.benefit-text p {
    color: #7f8c8d;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9fafb;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
    }

.quote-icon {
    color: #4e73df;
    font-size: 2.5rem;
    opacity: 0.2;
    position: absolute;
    top: 15px;
    right: 25px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.client-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: #2d3748;
}

.client-position {
    color: #718096;
    font-size: 0.9rem;
}

/* Technology Section */
.tech-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

    .tech-icon i {
        font-size: 1.8rem;
        color: white;
    }

.tech-details h4 {
    margin-bottom: 8px;
    color: #2d3748;
}

.tech-image {
    text-align: center;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: #f8f9fa;
}

    .accordion-button:not(.collapsed) {
        background-color: #e9ecef;
        color: #4e73df;
    }

.accordion-body {
    padding: 20px;
    line-height: 1.8;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 70px 0;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .process-steps::before {
        left: 30px;
    }

    .process-step {
        margin-left: 60px;
    }

    .tech-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .restaurant-system {
        padding-top: 70px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .restaurant-feature-card {
        padding: 25px 20px;
    }
}
/* استایل بخش سوالات متداول */
.accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: #f8f9fa;
}

    .accordion-button:not(.collapsed) {
        background-color: #e9ecef;
        color: #4e73df;
    }

.accordion-body {
    padding: 20px;
    line-height: 1.8;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #dee2e6;
}