/* USŁUGI Page Specific Styles */
.uslugi-hero {
    background: url('/img/uslugi/evbox_view_01.jpg') center / cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.uslugi-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.uslugi-hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.uslugi-hero__subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.uslugi-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.uslugi-hero__description {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.95;
}

.uslugi-hero__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.uslugi-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);
}

.uslugi-hero__feature-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Service Card Button Styles */
.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);
}

/* Service Card Layout */
.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__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 2rem;
}

.service-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.1);
}

.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 {
    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;
}

.services-overview__title {
    text-align: center;
    margin-bottom: 1rem;
}

.services-overview__description {
    text-align: center;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Additional Services Section */
.additional-services {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.additional-services__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #303a4d;
    margin-bottom: 4rem;
}

.additional-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-service-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.additional-service-item:hover {
    transform: translateY(-5px);
}

.additional-service-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.additional-service-item__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #303a4d;
    margin-bottom: 0.75rem;
}

.additional-service-item__content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .uslugi-hero {
        background-attachment: scroll;
        padding: 120px 0 60px;
    }

    .uslugi-hero__title {
        font-size: 2.5rem;
    }

    .uslugi-hero__features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-overview__title {
        font-size: 2rem;
    }

    .additional-service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* CTA Section Styles */
.outro {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/home/tlo ciemne.jpg') center / cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.outro__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.outro__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.outro__text {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 740px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.outro__button {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background-color: #303a4d;
    color: #fff !important;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.outro__button:hover {
    background-color: #00b1cf;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 177, 207, 0.3);
}

.outro_home {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .outro {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .outro_home {
        background-attachment: scroll;
    }

    .outro__title {
        font-size: 2.5rem;
    }

    .outro__text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .outro__button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}