/* SERWIS Page Specific Styles */
.serwis-hero {
    background: url('/img/serwis/1461EV-BOX.jpg') center / cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.serwis-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.serwis-hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.serwis-hero__subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.serwis-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.serwis-hero__description {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.95;
}

.serwis-hero__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.serwis-hero__feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.serwis-hero__feature-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background-color: #fff;
}

.services-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-overview__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-overview__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1.5rem;
}

.services-overview__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Service Card Overlay */
.service-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 177, 207, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-card__overlay {
    opacity: 1;
}

.service-card__icon {
    width: 48px;
    height: 48px;
}

.service-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 2rem;
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #303a4d;
    margin-bottom: 1rem;
}

.service-card__description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-card__features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #303a4d;
    font-size: 0.95rem;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b1cf;
    font-weight: bold;
}

.service-card__button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    background-color: #00b1cf;
    color: #fff !important;
    border: 2px solid #00b1cf;
    text-decoration: none;
    margin-top: auto;
}

.service-card__button:hover {
    background-color: #0097ad;
    border-color: #0097ad;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 177, 207, 0.3);
}

/* Additional Services */
.additional-services {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.additional-services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.additional-services__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 3rem;
}

.additional-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.additional-service-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.additional-service-item:hover {
    transform: translateY(-5px);
}

.additional-service-item__icon {
    width: 32px;
    height: 32px;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: none;
}

.additional-service-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.additional-service-item__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 0.75rem;
}

.additional-service-item__content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Service Process */
.service-process {
    padding: 100px 0;
    background-color: #fff;
}

.service-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-process__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 4rem;
}

.service-process__steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.service-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    flex: 1;
}

.service-step__number {
    width: 50px;
    height: 50px;
    background-color: #00b1cf;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 0.5rem;
}

.service-step__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .serwis-hero__title {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .additional-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .serwis-hero {
        background-attachment: scroll;
        padding: 120px 0 60px;
    }

    .serwis-hero__title {
        font-size: 2.2rem;
    }

    .services-grid,
    .additional-services__grid,
    .service-process__steps {
        grid-template-columns: 1fr;
    }

    .additional-service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .additional-service-item__icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}