/* ===================================
   Scenario-Based Services Styles
   =================================== */

.scenario-services-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.scenario-header {
    text-align: center;
    margin-bottom: 80px;
}

.scenario-header h2 {
    font-size: 3rem;
    color: #1A2332;
    margin-bottom: 20px;
    font-weight: 800;
}

.scenario-header p {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Scenario Cards Grid ===== */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.scenario-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: all 0.4s ease;
}

.scenario-card:nth-child(1)::before {
    background: linear-gradient(90deg, #667eea 0%, #f093fb 100%);
}

.scenario-card:nth-child(2)::before {
    background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
}

.scenario-card:nth-child(3)::before {
    background: linear-gradient(90deg, #30cfd0 0%, #330867 100%);
}

.scenario-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.scenario-card:hover::before {
    height: 8px;
}

/* Scenario Image */
.scenario-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.scenario-card:hover .scenario-image img {
    transform: scale(1.1);
}

/* Scenario Icon Badge */
.scenario-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.scenario-card:nth-child(1) .scenario-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(240, 147, 251, 0.9) 100%);
}

.scenario-card:nth-child(2) .scenario-icon {
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.9) 0%, rgba(254, 225, 64, 0.9) 100%);
}

.scenario-card:nth-child(3) .scenario-icon {
    background: linear-gradient(135deg, rgba(48, 207, 208, 0.9) 0%, rgba(51, 8, 103, 0.9) 100%);
}

/* Scenario Content */
.scenario-content {
    padding: 35px 30px;
}

.scenario-title {
    font-size: 1.8rem;
    color: #1A2332;
    margin-bottom: 15px;
    font-weight: 700;
}

.scenario-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* What We Provide List */
.scenario-provides {
    margin-bottom: 25px;
}

.scenario-provides h4 {
    font-size: 1rem;
    color: #1A2332;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scenario-provides h4::before {
    content: '✨';
    font-size: 1.2rem;
}

.service-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #1A2332;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.scenario-card:nth-child(1) .service-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.scenario-card:nth-child(2) .service-tag:hover {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.scenario-card:nth-child(3) .service-tag:hover {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Example Projects */
.scenario-examples {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 25px;
}

.scenario-examples h5 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.scenario-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-examples li {
    color: #888;
    font-size: 0.85rem;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.scenario-examples li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 700;
}

/* CTA Button */
.scenario-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.scenario-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.scenario-cta i {
    transition: transform 0.3s ease;
}

.scenario-cta:hover i {
    transform: translateX(5px);
}

/* Bottom CTA Section */
.scenario-bottom-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.scenario-bottom-cta h3 {
    font-size: 2.2rem;
    color: #1A2332;
    margin-bottom: 20px;
    font-weight: 700;
}

.scenario-bottom-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.scenario-bottom-cta .btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .scenario-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .scenario-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .scenario-header h2 {
        font-size: 2.2rem;
    }

    .scenario-header p {
        font-size: 1.1rem;
    }

    .scenario-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scenario-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }

    .scenario-image {
        height: 240px;
    }

    .scenario-content {
        padding: 30px 25px;
    }

    .scenario-title {
        font-size: 1.5rem;
    }

    .scenario-bottom-cta h3 {
        font-size: 1.8rem;
    }

    .scenario-bottom-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scenario-header h2 {
        font-size: 1.8rem;
    }

    .scenario-image {
        height: 200px;
    }

    .scenario-content {
        padding: 25px 20px;
    }

    .scenario-title {
        font-size: 1.3rem;
    }

    .scenario-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .scenario-bottom-cta {
        padding: 40px 25px;
    }

    .scenario-bottom-cta h3 {
        font-size: 1.5rem;
    }
}
