/* ============================================================
   TRANS-KOP - SERVICES (USŁUGI) STYLES
   Dedykowany styl dla robót ziemnych - professional/technical
   ============================================================ */

/* ============================================================
   CONTENT AREA - CARD/BOX STYLE WITH ANIMATIONS
   ============================================================ */

.content-area {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 35px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.content-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 196, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.content-area:hover::after {
    left: 100%;
}

.content-area:hover {
    border-color: rgba(245, 196, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.content-area h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--color-dark);
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.content-area h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-area:hover h2::after {
    width: 80px;
}

.content-area h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--color-dark);
    margin: 35px 0 18px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 15px;
    z-index: 1;
}

.content-area h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--color-primary);
    border-radius: 2px;
    transition: height 0.4s ease;
}

.content-area:hover h3::before {
    height: 70%;
}

.content-area p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 20px;
}

/* ============================================================
   CHECK LIST - SLIDE IN STYLE
   ============================================================ */

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-left: 4px solid var(--color-primary);
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 600;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.check-list li.visible {
    opacity: 1;
    transform: translateX(0);
}

.check-list li:nth-child(1) { transition-delay: 0.05s; }
.check-list li:nth-child(2) { transition-delay: 0.1s; }
.check-list li:nth-child(3) { transition-delay: 0.15s; }
.check-list li:nth-child(4) { transition-delay: 0.2s; }
.check-list li:nth-child(5) { transition-delay: 0.25s; }

.check-list li:hover {
    background: linear-gradient(90deg, rgba(245, 196, 0, 0.08) 0%, var(--color-white) 100%);
    border-color: var(--color-primary);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.check-list li i {
    font-size: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ============================================================
   TECH TABLE
   Dziedziczy z details.css (products style)
   ============================================================ */

/* Tabela używa stylu z details.css - bez override */

/* ============================================================
   SIDEBAR WIDGET - CLEAN WHITE
   ============================================================ */

.widget {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: 8px;
    padding: 28px 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.widget:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 6px;
}

.menu-list li:last-child {
    margin-bottom: 0;
}

.menu-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-list a:hover {
    background: var(--color-gray-100);
    color: var(--color-dark);
    padding-left: 18px;
}

.menu-list a.active {
    background: linear-gradient(90deg, rgba(245, 196, 0, 0.15) 0%, rgba(245, 196, 0, 0.05) 100%);
    color: var(--color-dark);
    border-left: 3px solid var(--color-primary);
    padding-left: 15px;
}

.menu-list a i {
    font-size: 10px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.menu-list a:hover i {
    transform: translateX(3px);
}

/* ============================================================
   WIDGET CONTACT - YELLOW CTA (UNIVERSAL)
   ============================================================ */

.widget-contact {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffd000 100%);
    border: none;
    border-radius: 8px;
    padding: 35px 28px;
    text-align: center;
    color: var(--color-dark);
    box-shadow: 0 8px 24px rgba(245, 196, 0, 0.25);
    order: 999;
}

.widget-contact .widget-title {
    color: var(--color-dark);
    border-bottom-color: rgba(0, 0, 0, 0.15);
    font-size: 17px;
}

.widget-contact p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    margin: 12px 0 20px 0;
    line-height: 1.6;
}

.phone-big {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    margin: 20px 0;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.phone-big:hover {
    color: var(--color-white);
    transform: scale(1.05);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.widget-contact .btn--primary {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.widget-contact .btn--primary:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .content-area {
        padding: 30px 25px;
        margin-bottom: 25px;
    }

    .content-area h2 {
        font-size: 1.7rem;
    }

    .content-area h3 {
        font-size: 1.3rem;
        padding-left: 12px;
    }

    .check-list li {
        padding: 14px 16px;
        font-size: 14px;
    }

    .tech-table th,
    .tech-table td {
        padding: 12px 16px;
        font-size: 13px;
    }

    .widget {
        padding: 24px 20px;
    }

    .widget-contact {
        padding: 30px 24px;
    }

    .phone-big {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .content-area h2 {
        font-size: 1.5rem;
    }

    .content-area h3 {
        font-size: 1.2rem;
        padding-left: 10px;
    }

    .content-area h3::before {
        width: 3px;
    }

    .check-list li {
        font-size: 13px;
    }

    .phone-big {
        font-size: 20px;
    }
}
