/* Service Detail Page Styles */

.service-detail-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-detail-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

/* Main Content */
.service-detail-main {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Featured Image */
.service-featured-image {
    position: relative;
    overflow: hidden;
    height: 450px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Content */
.service-content {
    padding: 50px;
}

.service-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--logisko-dark);
    margin: 0 0 25px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--logisko-red);
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-content h3,
.service-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--logisko-dark);
    margin: 30px 0 15px 0;
}

.service-content ul,
.service-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.service-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Service Features */
.service-features {
    padding: 0 50px 50px;
}

.service-features h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--logisko-dark);
    margin: 0 0 25px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f9fafb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    transform: translateX(5px);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    fill: var(--logisko-red);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--logisko-dark);
}

/* Service CTA */
.service-cta {
    padding: 40px 50px 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.service-cta h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--logisko-dark);
    margin: 0 0 15px 0;
}

.service-cta p {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 30px 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--logisko-red) 0%, #c00f16 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(223, 17, 25, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 17, 25, 0.4);
}

.btn-secondary {
    background: #fff;
    color: var(--logisko-dark);
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: var(--logisko-red);
    color: var(--logisko-red);
    transform: translateY(-2px);
}

.btn-primary svg,
.btn-secondary svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.widget-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--logisko-dark);
    margin: 0 0 25px 0;
    padding-bottom: 18px;
    border-bottom: 3px solid var(--logisko-red);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--logisko-blue);
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 0;
}

.services-list a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: #4b5563;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-bottom: 8px;
    background: #f9fafb;
    position: relative;
    padding-left: 40px;
}

.services-list a::before {
    content: '→';
    position: absolute;
    left: 16px;
    color: var(--logisko-red);
    font-weight: 700;
    transition: all 0.3s ease;
}

.services-list a:hover {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: var(--logisko-red);
    padding-left: 45px;
}

/* Contact Widget */
.contact-widget .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #f9fafb;
    border-radius: 10px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--logisko-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item span {
    color: var(--logisko-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.contact-item a:hover {
    color: var(--logisko-red);
}

/* Download Widget */
.download-widget {
    background: linear-gradient(135deg, var(--logisko-blue) 0%, rgba(4, 34, 62, 0.95) 100%);
}

.download-widget .widget-title {
    color: #fff;
    border-bottom-color: var(--logisko-red);
}

.download-widget .widget-title::after {
    background: #fff;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.download-btn:last-child {
    margin-bottom: 0;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

.download-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .service-detail-layout {
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        order: 2;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 60px 0;
    }

    .service-featured-image {
        height: 300px;
    }

    .service-content {
        padding: 35px 30px;
    }

    .service-content h2 {
        font-size: 24px;
    }

    .service-features {
        padding: 0 30px 30px;
    }

    .service-cta {
        padding: 30px 25px;
    }

    .service-cta h3 {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .sidebar-widget {
        padding: 25px;
    }
}