.service-detail-hero {
    background: linear-gradient(135deg, #ff2c2c 0%, #e02020 50%, #cc1a1a 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.service-detail-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.service-detail-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-detail-content {
    padding: 4rem 2rem;
    background: white;
}

.service-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.service-detail-image:hover {
    transform: scale(1.02);
}

.service-detail-description {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 3rem;
}

.service-detail-description h2,
.service-detail-description h3 {
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-description h2 {
    font-size: 2rem;
}

.service-detail-description h3 {
    font-size: 1.5rem;
}

.service-detail-description p {
    margin-bottom: 1.5rem;
}

.service-detail-description ul,
.service-detail-description ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-detail-description li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 44, 44, 0.1);
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff2c2c, #e02020);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.service-feature-icon svg {
    width: 24px;
    height: 24px;
}

.service-feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-feature-content p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.related-services-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
}

.related-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-services-container h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px solid transparent;
}

.related-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 44, 44, 0.2);
    border-color: rgba(255, 44, 44, 0.2);
}

.related-service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.related-service-card:hover h3 {
    color: #ff2c2c;
}

.related-service-card p {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.service-cta {
    background: linear-gradient(135deg, #ff2c2c 0%, #e02020 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.service-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.service-cta p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #ff2c2c;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .service-detail-hero h1 {
        font-size: 2.5rem;
    }

    .service-detail-hero p {
        font-size: 1.125rem;
    }

    .service-detail-content {
        padding: 3rem 1.5rem;
    }

    .service-detail-image {
        height: 300px;
        border-radius: 12px;
    }

    .service-features {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .related-services-grid {
        grid-template-columns: 1fr;
    }

    .service-cta h2 {
        font-size: 2rem;
    }
}

