/* Dodatkowe style dla podstrony usługi */

/* Sekcja wprowadzająca */
.services-intro {
    padding: 80px 0;
    background-color: white;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-text p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.intro-text li {
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.intro-text li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: -10px;
    font-weight: bold;
}

.intro-image {
    flex: 1;
    min-width: 300px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Karty usług */
.services-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.service-card .btn-outline {
    align-self: flex-start;
    margin-top: auto;
}

/* Sekcja branż */
.industry-section {
    padding: 80px 0;
    background-color: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.industry-card:hover h3,
.industry-card:hover p {
    color: white;
}

.industry-card:hover .industry-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.industry-card:hover .industry-icon i {
    color: white;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.industry-icon i {
    font-size: 25px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.industry-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.industry-card p {
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Sekcja procesu */
.process-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.process-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    width: 3px;
    background-color: var(--secondary-color);
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(231, 76, 60, 0.2);
}

.step-content {
    padding-left: 30px;
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Slider testimoniali */
.testimonials-slider {
    max-width: 800px;
    margin: 50px auto 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.testimonial-prev,
.testimonial-next {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--secondary-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--secondary-color);
}

/* Responsywność */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}