/* ========================================
   USŁUGI PAGE - MODERN REDESIGN
   Mobile First Approach
   ======================================== */

:root {
    --primary: #064F3D;
    --primary-dark: #0B1A17;
    --primary-light: #3a9b85;
    --primary-ultra-light: #e8f5f1;
    --accent: #2dd4bf;
    --text-dark: #0B1A17;
    --text-muted: #4a5568;
    --gray-light: #f8fafb;
    --gray-medium: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 10px 40px rgba(6, 79, 61, 0.2);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ========================================
   HERO SECTION (page-banner) - layout jak na cennik/kontakt
   Tło i kolory z hero-unified.css
   ======================================== */
.page-banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 2vw, 1.25rem);
    width: 100%;
    position: relative;
    z-index: 2;
}

.page-banner .hero-content {
    flex: 1;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 0;
}

.page-banner h1 {
    font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: #ffffff !important;
    line-height: 1.2;
}

.page-banner .banner-description {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.page-banner .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

.page-banner .hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.page-banner .hero-image {
    flex: 1;
    max-width: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner .hero-image img {
    width: 100%;
    max-width: clamp(200px, 50vw, 500px);
    height: auto;
    max-height: clamp(250px, 60vh, 500px);
    border-radius: clamp(0.75rem, 0.6rem + 0.75vw, 0.9375rem);
    display: block;
}

.page-banner .hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Dekoracje tła hero - ukryte jak na cenniku (spójność wizualna) */
.page-banner .hero-background-elements,
.page-banner .geometric-shape,
.page-banner .shape-1,
.page-banner .shape-2,
.page-banner .shape-3,
.page-banner .medical-icon {
    display: none !important;
}

/* Desktop: układ w rzędzie (tekst | obraz) */
@media (min-width: 769px) {
    .page-banner .container {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .page-banner .hero-content {
        flex: 0 0 60%;
        max-width: 60%;
        text-align: left;
        padding-right: clamp(1rem, 2vw, 1.5rem);
    }

    .page-banner .hero-buttons {
        justify-content: flex-start;
    }

    .page-banner .hero-image {
        flex: 0 0 40%;
        max-width: 40%;
        justify-content: flex-end;
    }

    .page-banner .hero-image img {
        max-width: 500px;
        max-height: 500px;
    }
}

/* ========================================
   NAVIGATION (Specjalizacje)
   ======================================== */
.uslugi-nav {
    background: var(--white);
    padding: 0px 0 74px;
    position: sticky;
    top: 17px;
    z-index: 100;
}

.uslugi-nav__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .uslugi-nav__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1024px) {
    .uslugi-nav__grid {
        grid-template-columns: repeat(9, 1fr);
        gap: 16px;
    }
}

.uslugi-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: linear-gradient(145deg, var(--white) 0%, var(--gray-light) 100%);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.uslugi-nav__item:hover {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-colored);
    border-color: transparent;
}

.uslugi-nav__item i {
    font-size: 1.75rem;
    color: var(--primary);
    transition: all 0.4s ease;
    background: var(--primary-ultra-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.uslugi-nav__item:hover i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.uslugi-nav__item span {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .uslugi-nav__item span {
        font-size: 0.8rem;
    }
}

/* ========================================
   DETAIL SECTIONS (Specjalizacje)
   ======================================== */
.uslugi-detail {
    padding: 100px 0;
    scroll-margin-top: 180px;
    position: relative;
}

.uslugi-detail--alt {
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

/* Dekoracyjny element w tle */
.uslugi-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--primary-ultra-light) 0%, transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

.uslugi-detail--alt::before {
    background: linear-gradient(180deg, rgba(6, 79, 61, 0.03) 0%, transparent 100%);
}

.uslugi-detail__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
}

.uslugi-detail__icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: var(--shadow-colored);
    position: relative;
}

.uslugi-detail__icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(145deg, var(--accent), var(--primary));
    z-index: -1;
    opacity: 0.3;
}

.uslugi-detail__icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.uslugi-detail__header h2 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
    color: var(--text-dark);
    margin: 0 0 16px;
    font-weight: 700;
}

.uslugi-detail__header h2::after {
    display: none;
}

.uslugi-detail__lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.uslugi-detail__content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Karta z treścią */
.uslugi-detail__text {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .uslugi-detail__text {
        padding: 28px 20px;
    }
}

.uslugi-detail__text h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 36px 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.uslugi-detail__text h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.uslugi-detail__text h3:first-child {
    margin-top: 0;
}

.uslugi-detail__text h3::after {
    display: none;
}

.uslugi-detail__text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0 0 18px;
    font-size: 1.02rem;
}

.uslugi-detail__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 8px;
}

.uslugi-detail__list li {
    padding: 14px 16px 14px 48px;
    position: relative;
    color: var(--text-muted);
    line-height: 1.5;
    background: var(--gray-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.uslugi-detail__list li:hover {
    background: var(--primary-ultra-light);
    border-color: rgba(6, 79, 61, 0.1);
    transform: translateX(4px);
}

.uslugi-detail__list li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
}

.uslugi-detail__list--check li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    left: 14px;
}

.uslugi-detail__list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.uslugi-detail__note {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary-ultra-light) 0%, rgba(45, 212, 191, 0.1) 100%);
    border-radius: var(--radius);
    margin-top: 28px;
    border-left: 4px solid var(--primary);
}

.uslugi-detail__note i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.uslugi-detail__note p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.uslugi-detail__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
    justify-content: center;
}

@media (min-width: 768px) {
    .uslugi-detail__cta {
        justify-content: flex-start;
    }
}

/* ========================================
   PROCESS SECTION (Pierwsza wizyta)
   ======================================== */
.uslugi-process {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Dekoracyjne tło */
.uslugi-process::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.uslugi-process::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.uslugi-process__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.uslugi-process__header h2 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
    color: var(--white);
    margin: 0 0 16px;
    font-weight: 700;
}

.uslugi-process__header h2::after {
    display: none;
}

.uslugi-process__header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin: 0;
}

.uslugi-process__timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .uslugi-process__timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.uslugi-process__step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.uslugi-process__step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.uslugi-process__number {
    position: absolute;
    top: -14px;
    left: 24px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.4);
}

.uslugi-process__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.uslugi-process__icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.uslugi-process__content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0 0 10px;
    font-weight: 600;
}

.uslugi-process__content h3::after {
    display: none;
}

.uslugi-process__content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Łączniki między krokami na desktop */
@media (min-width: 768px) {
    .uslugi-process__step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -12px;
        width: 24px;
        height: 2px;
        background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent);
        transform: translateY(-50%);
    }
}

/* ========================================
   REVIEWS SECTION (Opinie Google)
   ======================================== */
.uslugi-reviews {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
}

.uslugi-reviews__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .uslugi-reviews__content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 48px 56px;
    }
}

.uslugi-reviews__rating {
    display: flex;
    align-items: center;
    gap: 16px;
}

.uslugi-reviews__stars {
    display: flex;
    gap: 4px;
}

.uslugi-reviews__stars i {
    color: #ffc107;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.uslugi-reviews__score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.uslugi-reviews__text {
    max-width: 300px;
}

.uslugi-reviews__count {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0 0 6px;
}

.uslugi-reviews__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.uslugi-faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.uslugi-faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.uslugi-faq__header h2 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
    color: var(--text-dark);
    margin: 0 0 14px;
    font-weight: 700;
}

.uslugi-faq__header h2::after {
    display: none;
}

.uslugi-faq__header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin: 0;
}

.uslugi-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.uslugi-faq__item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.uslugi-faq__item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 79, 61, 0.15);
}

.uslugi-faq__item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.uslugi-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}

.uslugi-faq__question:hover {
    background: var(--primary-ultra-light);
}

.uslugi-faq__item.active .uslugi-faq__question {
    background: var(--primary-ultra-light);
}

.uslugi-faq__question span {
    flex: 1;
    padding-right: 20px;
}

.uslugi-faq__question i {
    color: var(--primary);
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-ultra-light);
    border-radius: 50%;
}

.uslugi-faq__item.active .uslugi-faq__question i {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
}

.uslugi-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.uslugi-faq__item.active .uslugi-faq__answer {
    max-height: 300px;
}

.uslugi-faq__answer p {
    padding: 0 28px 24px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.uslugi-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.uslugi-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.uslugi-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.uslugi-cta__content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.uslugi-cta h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--white);
    margin: 0 0 20px;
    font-weight: 700;
}

.uslugi-cta h2::after {
    display: none;
}

.uslugi-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    line-height: 1.6;
}

.uslugi-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 480px) {
    .uslugi-cta__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* Buttons on light background */
.uslugi-detail .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-colored);
}

.uslugi-detail .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 79, 61, 0.35);
}

.uslugi-detail .btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.uslugi-detail .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
}

.uslugi-reviews .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.uslugi-reviews .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
}

.uslugi-reviews .btn-outline i {
    color: #4285f4;
    transition: color 0.3s ease;
}

.uslugi-reviews .btn-outline:hover i {
    color: var(--white);
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    .uslugi-detail__icon {
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }
    
    .uslugi-hero__badge {
        animation: slideDown 0.6s ease-out;
    }
    
    .uslugi-hero h1 {
        animation: slideDown 0.6s ease-out 0.1s both;
    }
    
    .uslugi-hero__subtitle {
        animation: slideDown 0.6s ease-out 0.2s both;
    }
    
    .uslugi-hero__cta {
        animation: slideDown 0.6s ease-out 0.3s both;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Hover efekty dla tekstu */
.uslugi-detail__text {
    transition: all 0.4s ease;
}

.uslugi-detail__text:hover {
    box-shadow: var(--shadow-lg);
}

/* ========================================
   BODY STRIPES (Background)
   ======================================== */
body::after {
    content: '';
    position: fixed;
    top: 50%;
    right: 0;
    width: 250px;
    height: 100vh;
    background-image: url('../images/pasy w tle.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 768px) {
    body::after {
        width: 150px;
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    body::after {
        display: none;
    }
}

/* Ensure content is above stripes */
.uslugi-hero,
.uslugi-nav,
.uslugi-detail,
.uslugi-process,
.uslugi-reviews,
.uslugi-faq,
.uslugi-cta,
.footer {
    position: relative;
    z-index: 2;
}

/* Floating buttons - style są w shared.css */
