/* ========================================
   SINGLE SERVICE PAGE STYLES
   ======================================== */

.service-single {
    padding: 40px 0 60px;
}

/* Service Header */
.service-header {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 48px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    border: 1px solid #bfdbfe;
}

.service-header-title {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

/* Content Wrapper */
.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    margin-bottom: 40px;
}

/* Main Content */
.service-main-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

.service-featured-image {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.service-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-description {
    color: #374151;
    font-size: 16px;
    line-height: 1.8;
}

.service-description p {
    margin-bottom: 16px;
}

.service-description h2,
.service-description h3 {
    color: #1a1a1a;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-description h2 {
    font-size: 28px;
}

.service-description h3 {
    font-size: 22px;
}

.service-description ul,
.service-description ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.service-description li {
    margin-bottom: 8px;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-sidebar-box {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

.service-sidebar-title {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-sidebar-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CTA Box */
.service-sidebar-cta {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.service-cta-btn,
.service-cta-btn:link,
.service-cta-btn:visited,
.service-cta-btn:active {
    display: block;
    text-align: center;
    background: #2563eb !important;
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.service-cta-btn:hover,
.service-cta-btn:focus {
    background: #1d4ed8 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Back Link */
.service-back {
    text-align: center;
    padding-top: 40px;
}

.service-back-link,
.service-back-link:link,
.service-back-link:visited,
.service-back-link:active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.service-back-link:hover,
.service-back-link:focus {
    color: #1d4ed8 !important;
    transform: translateX(-4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-header {
        padding: 32px 24px;
    }
    
    .service-header-title {
        font-size: 32px;
    }
    
    .service-main-content {
        padding: 24px;
    }
}
