/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background: #f9fafb;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-image-section {
    position: sticky;
    top: 100px;
}

.service-main-image {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.service-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-icon-display {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #FFA500;
}

.service-info-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-short-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FFA500;
    color: white;
    border: 2px solid #FFA500;
}

.btn-primary:hover {
    background: #FF8C00;
    border-color: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #111827;
    border: 2px solid #e5e7eb;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #FFA500;
    color: #FFA500;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.service-long-description,
.service-features {
    margin-top: 3rem;
}

.service-long-description h3,
.service-features h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.description-content {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: #fff7ed;
    transform: translateX(5px);
}

.features-list li svg {
    flex-shrink: 0;
    stroke: #FFA500;
    margin-top: 2px;
}

@media (max-width: 968px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image-section {
        position: relative;
        top: 0;
    }

    .service-name {
        font-size: 2rem;
    }

    .service-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 60px 0;
    }

    .service-info-section {
        padding: 2rem;
    }

    .service-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .service-detail-section {
        padding: 50px 0;
    }

    .service-detail-grid {
        gap: 1.5rem;
    }

    .service-info-section {
        padding: 1.5rem 1rem;
    }

    .service-name {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .service-short-description {
        font-size: 1rem;
    }

    .service-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .service-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .service-long-description h3,
    .service-features h3 {
        font-size: 1.125rem;
    }

    .features-list li {
        font-size: 0.875rem;
    }
}
